index.html (779B)
1 2 <!DOCTYPE html> 3 <html lang="en"> 4 <head> 5 <meta charset="utf-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 8 <title>CLN Rune Workshop</title> 9 <link rel="stylesheet" href="style.css" /> 10 </head> 11 <body> 12 <div id="container"> 13 <header> 14 <img width="140px" height="140px" src="AegishjalmrRed.svg" > 15 <div> 16 <h1>Rune Workshop</h1> 17 <h3>Craft CoreLN Authentication Runes</h3> 18 </div> 19 </header> 20 <section id="rune"> 21 <h2>Command</h2> 22 <textarea id="command"></textarea> 23 </section> 24 <section id="workshop"> 25 </section> 26 <section id="footer"> 27 <a href="https://github.com/jb55/rune-workshop">Source Code</a> 28 </section> 29 </div> 30 </body> 31 <script src="rune-workshop.js?v=3" ></script> 32 </html> 33