blog.html (1332B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>The amazing blogs of Lucas Standen!</title> 6 <link rel="stylesheet" href="./style.css"> 7 </head> 8 9 <body> 10 <header> 11 <h1 class="title">The amazing blogs of Lucas Standen!</h1> 12 <h2 class="title">You've stumbled right into my rants!</h2> 13 14 <hr> 15 16 <nav> 17 <table> 18 <thead> 19 <tr> 20 <th><a href="./index.html">Home</a></th> 21 <th><a href="./blog.html">Blog</a></th> 22 <th><a href="./cv.html">CV</a></th> 23 </tr> 24 </thead> 25 </table> 26 </nav> 27 28 <hr> 29 </header> 30 31 <div id="mainbody"> 32 <table id="blogs"> 33 <thead> 34 <tr> 35 <th>Title</th> 36 <th>Date</th> 37 </tr> 38 </thead> 39 <tbody> 40 <tr> 41 <td><a href="./blogs/3.html">Becoming a Techno Mage</a></td> 42 <td>05/03/26</td> 43 </tr> 44 <tr> 45 <td><a href="./blogs/2.html">How do blog</a></td> 46 <td>05/03/26</td> 47 </tr> 48 <tr> 49 <td><a href="./blogs/1.html">Hello world!</a></td> 50 <td>05/03/26</td> 51 </tr> 52 53 </tbody> 54 </table> 55 </div> 56 57 <hr> 58 59 <footer> 60 <a href="./disclaimer.html">Disclaimer</a> 61 <a href="https://analognowhere.com/_/cohelg/">Background source</a> 62 <small id="pageLastChanged"></small> 63 <script src="scripts/lastmodified.js"></script> 64 </footer> 65 </body> 66 </html>