uni

Thing1's amazing uni repo
Log | Files | Refs

commit 48708711003110f72d35b059583b4cad1f9258df
parent 48adeec6381cc7bea5a2612ca4ecc3c0293dc607
Author: thing1 <thing1@seacrossedlovers.xyz>
Date:   Mon, 23 Feb 2026 17:08:37 +0000

cv

Diffstat:
ACS10120/project/:w | 133+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
MCS10120/project/cv.html | 15++++++++++++---
ACS10120/project/cvstyle.css | 51+++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 196 insertions(+), 3 deletions(-)

diff --git a/CS10120/project/:w b/CS10120/project/:w @@ -0,0 +1,133 @@ +<!DOCTYPE html> +<html> + <head> + <title>CV</title> + <link rel="stylesheet" href="./cvstyle.css"> + </head> + + <header> + <h1>Lucas Standen</h1> + <aside> + <table> + <tbody> + <tr> + <td>07123456789</td> + <td>lucas@example.com</td> + <td>420 foobar road EN</td> + </tr> + </tbody> + </table> + </aside> + </header> + + + + <div class="content"> + <div> + <h2>Qualifications</h2> + <table> + <thead> + <tr> + <th>Type</th> + <th>Where</th> + <th>When</th> + </tr> + </thead> + <tbody> + <tr> + <td>PhD in computer infrastructure</td> + <td>Aberystwyth University</td> + <td>2025</td> + </tr> + <tr> + <td>Business Admin</td> + <td>Aberystwyth University</td> + <td>2020</td> + </tr> + </tbody> + </table> + </div> + <hr> + + <div> + <h2>Interest</h2> + <table> + <thead> + <tr> + <th>What</th> + <th>Skills learned</th> + </tr> + </thead> + <tbody> + <tr> + <td>Programming</td> + <td><p> + Self taught in C, Hare and Go, made many small projects that are used on a daily basis. Learned how to manage projects, debug them, and find what is important to a user</p> + </td> + </tr> + <tr> + <td>Hiking</td> + <td>Map reading and navigation skills, takes frequent hikes to stay healthy</td> + </tr> + </tbody> + </table> + </div> + <hr> + + <div> + <h2>History</h2> + <table> + <thead> + <tr> + <th>Where</th> + <th>When</th> + </tr> + </thead> + <tbody> + <tr> + <td></td> + <td></td> + </tr> + <tr> + <td></td> + <td></td> + </tr> + </tbody> + </table> + + </div> + <hr> + + <div> + <h2>References</h2> + <table> + <thead> + <tr> + <th>Who</th> + <th>Contact</th> + </tr> + </thead> + <tbody> + <tr> + <td>Judith M.<br>Head chef at the 3 heads pub</td> + <td>074567890, <a href="mailto:jum41@aber.ac.uk">jum41@aber.ac.uk</a></td> + </tr> + <tr> + <td>Otar A.<br>Personal tutor at Aberystwyth University</td> + <td>0734214567, <a href="mailto:ota1@aber.ac.uk">ota1@aber.ac.uk</a></td> + </tr> + </tbody> + </table> + </div> + <hr> + </div> + + + <footer> + <a href="./disclaimer.html">Disclaimer</a> + <pre>This page contains false information and is for demonstration only</pre> + <small><p id="pageLastChanged"></p></small> + <script src="scripts/lastmodified.js"></script> + </footer> + +</html> diff --git a/CS10120/project/cv.html b/CS10120/project/cv.html @@ -7,6 +7,9 @@ <header> <h1>Lucas Standen</h1> + </header> + + <aside> <table> <tbody> <tr> @@ -16,9 +19,11 @@ </tr> </tbody> </table> - </header> + </aside> + + - <aside> + <div class="content"> <div> <h2>Qualifications</h2> <table> @@ -43,6 +48,7 @@ </tbody> </table> </div> + <hr> <div> <h2>Interest</h2> @@ -67,6 +73,7 @@ </tbody> </table> </div> + <hr> <div> <h2>History</h2> @@ -90,6 +97,7 @@ </table> </div> + <hr> <div> <h2>References</h2> @@ -112,7 +120,8 @@ </tbody> </table> </div> - </aside> + <hr> + </div> <footer> diff --git a/CS10120/project/cvstyle.css b/CS10120/project/cvstyle.css @@ -0,0 +1,51 @@ +html{ + font-family: Arial, Helvetica, sans-serif; +} + + +table { + border-collapse: collapse; + margin-left: 350px; +} + +td, th { + border: 1px solid rgb(126, 159, 220); + text-align: left; + padding: 8px; +} + +tr:nth-child(even) { + background-color: rgb(126, 159, 220); +} + +h1{ + background-color: rgb(126, 159, 220); + padding: 30px; + text-align: center; + color: rgb(5, 4, 99); + +} + +aside{ + float: left; + align: left; + width: 200px; + padding-bottom: 800px; + padding-top: 200px; + padding-right: 10px; + padding-left: 20px; + background-color: rgb(126, 159, 220); +} + +aside table { + margin-left: 0px; + width: 2px; +} + +aside tr { + width: 10px; +} + +hr.solid{ + border-top: 3px solid rgb(5, 4, 99); +}