2.html (2412B)
1 2 <!DOCTYPE html> 3 <html lang=en> 4 <head> 5 <meta charset="UTF-8"> 6 <title>The amazing blogs of Lucas Standen!</title> 7 <link rel=stylesheet href=../style.css> 8 </head> 9 10 <body> 11 <header> 12 <h1 class=title>The amazing blogs of Lucas Standen!</h1> 13 <h2 class=title>You've stumbled right into my rants!</h2> 14 15 <hr> 16 17 <nav> 18 <table> 19 <thead> 20 <tr> 21 <th><a href=../index.html>Home</a></th> 22 <th><a href=../blog.html>Blog</a></th> 23 <th><a href=../cv.html>CV</a></th> 24 </tr> 25 </thead> 26 </table> 27 </nav> 28 29 <hr> 30 </header> 31 32 <div id=mainbody> 33 34 <h2>How do blog?</h2> 35 <p> 36 The blogs on this page are very simple to make, just writing html. I have a small script <a href="new.sh">here</a> that I use to generate the header and footer on each page, but there's nothing more to them than that. 37 </p> 38 39 <h2>So... computer?</h2> 40 <p>Like the main page says, I think computers are so cool, but not always, (in-fact not very often at all), <pre>AI, MicroSlop, Google</pre> and more, make computers suck-ey to use in my <small><em>objectively always 100% correct perfect</em></small> opinion. Anyway, why be down about what someone else does! The cool parts of computers are really cool, Language design, Operating systems, Minimal software patterns; that's where things are at!.</p> 41 42 <p>Again cutting things short again, <small><em>maybe making more blogs is more impressive</em></small></p> 43 44 </div> 45 46 <hr> 47 48 <footer> 49 <a href=../disclaimer.html>Disclaimer</a> 50 <a href=https://analognowhere.com/_/cohelg/>Background source</a> 51 <small id=pageLastChanged></small> 52 <script src=../scripts/lastmodified.js></script> 53 </footer> 54 </body> 55 </html> 56