irc2html- convert irc ascii art to html |
git clone git://git.acid.vegas/irc2html.git |
Log | Files | Refs | Archive |
index.html (1657B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <title>IRC2HTML</title> 5 <meta charset="UTF-8"> 6 <link rel="stylesheet" href="data/style.css" type="text/css"> 7 <script type="text/javascript" src="data/script.js"></script> 8 </head> 9 <body> 10 <div id="script" class="hidden"> 11 <form id="form" accept-charset="UTF-8"> 12 <table width="100%"> 13 <tr> 14 <td rowspan="3" width="45%"> 15 <textarea width="100%" id="text" name="text" placeholder="*Enter ASCII here*"></textarea> 16 </td> 17 <td align="center" height="33%" valign="top"> 18 <b>IRC2HTML</b> 19 <br><small><i>(<a href="https://acid.vegas/irc2html">source</a>)</i></small> 20 </td> 21 <td rowspan="3" width="45%"> 22 <textarea width="100%" id="html" name="html" placeholder="*HTML code will appear here*" readonly></textarea> 23 </td> 24 </tr> 25 <tr> 26 <td height="33%" width="10%"> 27 <input class="butt" type="submit" name="submit" value="Convert" onclick="return convert();"/> 28 <br><br><input class="butt" type="reset" name="reset" value="Reset" onclick="formReset();"/> 29 <br><br><input class="butt" type="button" name="download" value="Download" onclick="Download();"/> 30 </td> 31 </tr> 32 <tr> 33 <td align="center" height="33%" valign="bottom"> 34 <b>View</b> 35 </td> 36 </tr> 37 </table> 38 </form> 39 <div id="showcase" class="showcase"> 40 <span class="placeholder">*HTML view will appear here*</span> 41 </div> 42 </div> 43 <script type="text/javascript"> 44 document.getElementById("script").style.display = "block"; 45 </script> 46 <noscript> 47 Javascript is required to use this tool. 48 </noscript> 49 </body> 50 </html>