uni

Thing1's amazing uni repo
Log | Files | Refs

commit db96119037357c513e617bef27e944eabd42df1d
parent a24b4867a37603cfc7e36e95da7c1157e96f7bfa
Author: thing1 <thing1@seacrossedlovers.xyz>
Date:   Fri, 13 Feb 2026 23:10:25 +0000

added html files

Diffstat:
M.gitignore | 1+
ACS10120/project/cv.html | 0
ACS10120/project/disclaimer.html | 1+
ACS10120/project/index.html | 71+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 73 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -2,6 +2,7 @@ *.ps *.pdf *.html +!CS10120/project/*.html *.o *.out *.snm diff --git a/CS10120/project/cv.html b/CS10120/project/cv.html diff --git a/CS10120/project/disclaimer.html b/CS10120/project/disclaimer.html @@ -0,0 +1 @@ +<p id="disclaimer">The information provided on this and other pages by me, Lucas Standen (lus53@aber.ac.uk), is under my own personal responsibility and not that of Aberystwyth University. Similarly, any opinions expressed are my own and are in no way to be taken as those of A.U. The use of the University’s logo or crest is not allowed on individual user’s web pages.</p> diff --git a/CS10120/project/index.html b/CS10120/project/index.html @@ -0,0 +1,71 @@ +<head> + <title>The amazing world of Lucas Standen!</title> + <link rel="stylesheet" href="./style.css"> +</head> + +<body> + <header> + <h1 id="title">The amazing world of Lucas Standen!</h1> + <h2 id="title">A website straight out of 1999</h2> + + <hr> + + <nav> + <ul> + <li><a href="./cv.html">CV</a></li> + <li><a href="./blog.html">Blog</a></li> + </ul> + </nav> + + <hr> + </header> + + <div id="nameinput"> + <label for="namebox">What's your name?</label> + <input id="namebox" name="name" type="text" placeholder="Name" maxlength="20"> + <button onclick="sayHello();">Say <b><em>hello!</em></b></br></button> + + <p id="nameoutput"></p> + <script src="scripts/nameinput.js"></script> + </div> + + <hr> + + <div id="mainbody"> + <h2 onmouseleave="whosNotAsking();" onmouseover="whosAsking();">Who am I?</h2> + <h5 id="whosAsking"></h5> + <script src="scripts/whosasking.js"></script> + + <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">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> + + <h2>Why am I here?</h2> + + <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> + + <h2>So, do you like computers?</h2> + + <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="http://glenda.cat-v.org/">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, clean, and most importantly, 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> + + <hr> + <div id="aolBanner"> + <marquee scrollamount=7> + <p height=1>Get online with <a href="https://www.aol.com/">AOL</a> today!</p> + </marquee> + </div> + <hr> + </div> + + + <footer> + <table> + <tbody> + <tr> + <td><a href="./disclaimer.html">Disclaimer</a></td> + <td><a href="https://en.wikipedia.org/wiki/Netscape_Navigator">Best viewed on Netscape Navigator</a></td> + </tr> + </tbody> + </table> + <small><p id="pageLastChanged"></p></small> + <script src="scripts/lastmodified.js"></script> + </footer> +</body>