index.html (4732B)
1 <!DOCTYPE html> 2 3 <html lang="en"> 4 <head> 5 <meta charset="UTF-8"> 6 <title>The amazing world of Thing1 and Thing2!</title> 7 <link rel="stylesheet" href="./style.css"> 8 </head> 9 10 <body> 11 <header> 12 <h1 class="title">The amazing world of Thing1 and Thing2!</h1> 13 <h2 class="title">A website straight out of 1999</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="http://seacrossedlovers.xyz/git">GIT</a></th> 24 </tr> 25 </thead> 26 </table> 27 </nav> 28 </header> 29 30 <div id="nameinput"> 31 <hr> 32 <label for="namebox">What's your name?</label> 33 <input id="namebox" name="name" type="text" placeholder="Name" maxlength="20"> 34 <button onclick="sayHello();">Say <b><em>hello!</em></b></button> 35 36 <p id="nameoutput"></p> 37 <script src="scripts/nameinput.js"></script> 38 <hr> 39 </div> 40 41 <div id="mainbody"> 42 <h2 onmouseleave="whosNotAsking();" onmouseover="whosAsking();">Who am I?</h2> 43 <div class="rainbow" id="whosAsking"></div> 44 <script src="scripts/whosasking.js"></script> 45 46 <p>I'm a neat <em>little</em> nerd who likes programming, anime, and other such things. I spend an impressive amount of time behind a screen, and somehow my eyes still function<small class="verysmall"> (sorta)</small>. When I'm not in front of a screen, I'm probably cooking some food, perhaps for my <a href="https://users.aber.ac.uk/jum41/cs10120">friend</a>, as I seem to cook for others more than myself! I find it very relaxing, and cooking for someone else forces you to put in some effort, and you ought to try!</p> 47 48 <h2>Why am I here?</h2> 49 50 <p>I made this website to create my own little corner of the internet, <em>(it seems to have a lot of little corners, <strong>strange that, isn't it</strong>)</em>,<small class="verysmall"> and because I had an assignment to complete</small>.I hope to use this site as a nice little place to rant to my friends, and to show off, obviously.</p> 51 52 <h2>So, do you like computers?</h2> 53 54 <p>And now I've ran out of things to talk about so were back to computers! Aren't the just so cool! I sure think they are. They are much better when they get covered in stickers of cute little <a href="https://9p.io/plan9/glenda.html">mascots</a> though. Isn't Unix awesome, so is Plan9, why aren't all computers like that?! Imagine a world with computers that all spoke the same <em>lean</em>, <em>clean</em>, and most importantly, <em>simple</em> language; things might be a lot faster, but then again, perhaps no one would use a computer that only <a href="https://analognowhere.com/wiki/technomage/">techno mages</a> understand.</p> 55 56 <hr> 57 <div id="aolBanner"> 58 <marquee scrollamount=7><p height=1>Get online with <a href='https://www.aol.com/'>AOL</a> today!</p></marquee><hr> 59 </div> 60 61 <hr> 62 <div id="photo"> 63 <a href="https://analognowhere.com"><img style="max-height:50%; max-width:50%;" src=images/release.jpeg alt="Cirno and Glenda reading the great texts"></a> 64 <br> 65 <small class="verysmall"><em>Cirno and Glenda reading the great texts</em></small> 66 </div> 67 <hr> 68 </div> 69 70 <footer> 71 <table> 72 <tbody> 73 <tr> 74 <td> 75 <a href="https://en.wikipedia.org/wiki/Netscape_Navigator"><img width="88" src=images/netscape-ie.gif alt="Best viewed on Netscape Navigator 3.0"></a> 76 <a href="https://www.w3.org/Style/CSS/specs.en.html"><img width="88" src=images/cssdif.gif alt="CSS is hard"></a> 77 <a href="https://www.howtogeek.com/881609/why-you-should-stop-using-google-chrome-today/"><img width="88" src=images/anythingbut.gif alt="Please Not Chrome"></a> 78 <a href="https://archlinux.org"><img width="88" src=images/archlinux.gif alt="I use arch BTW"></a> 79 <a href="https://www.specsavers.co.uk/"><img width="88" src=images/best_viewed_with_eyes.gif alt="Do you have eyes?"></a> 80 <a href="https://9front.org/"><img width="88" src=images/mothra.gif alt="A link to a better way"></a> 81 <a href="https://jigsaw.w3.org/css-validator/check/referer"><img width="88" src="https://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS!"></a> 82 </td> 83 </tr> 84 </tbody> 85 </table> 86 87 <a href="./disclaimer.html">Disclaimer</a> 88 <a href="https://analognowhere.com/_/cohelg/">Background source</a> 89 <br> 90 <small id="pageLastChanged"></small> 91 <script src="scripts/lastmodified.js"></script> 92 93 <div id="webring"> 94 <a href="https://aberwebr.ing/lucas/left" class="btn"><</a> 95 <a href="https://aberwebr.ing/" class="btn"> Aber Webring </a> 96 <a href="https://aberwebr.ing/lucas/right" class="btn">></a> 97 </div> 98 </footer> 99 </body> 100 </html> 101