uni

Thing1's amazing uni repo
Log | Files | Refs

commit 3f9cba8742f414fb9f3479403c9bc5d4c5946dcf
parent 0757df614b5972fad33cd8145f455dc33c1f3c14
Author: glenda <glenda@cirno>
Date:   Tue, 17 Feb 2026 10:08:40 +0000

"cv"

Diffstat:
ACS10120/project/cv.html | 80+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 80 insertions(+), 0 deletions(-)

diff --git a/CS10120/project/cv.html b/CS10120/project/cv.html @@ -0,0 +1,80 @@ +<!DOCTYPE html> +<html> + <head> + <title>CV</title> + <link rel="stylesheet" href="./cvstyle.css"> + </head> + + <header> + <h1>Lucas Standen</h1> + <table> + <tbody> + <tr> + <td>07123456789</td> + <td>lucas@example.com</td> + <td>420 foobar road EN</td> + </tr> + </tbody> + </table> + </header> + + <aside> + <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> + + <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> + </aside> + + + <footer> + <pre>This page contains false information and is for demonstration only</pre> + <a href="./disclaimer.html">Disclaimer</a> + <small><p id="pageLastChanged"></p></small> + <script src="scripts/lastmodified.js"></script> + </footer> + +</html>