cv.html (2679B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>CV</title> 6 <link rel="stylesheet" href="./cvstyle.css"> 7 </head> 8 9 <header> 10 <h1>Lucas Standen</h1> 11 </header> 12 13 <div id="bar"> 14 <h2>Contact</h2> 15 <ul> 16 <li>07123456789</li> 17 <li>lucas@example.com</li> 18 <li>420 foobar road EN</li> 19 </ul> 20 </div> 21 22 23 24 <div class="content"> 25 <div> 26 <h2>Qualifications</h2> 27 <table> 28 <thead> 29 <tr> 30 <th><em>Type</em></th> 31 <th><em>Where</em></th> 32 <th><em>When</em></th> 33 </tr> 34 </thead> 35 <tbody> 36 <tr> 37 <td>PhD in computer infrastructure</td> 38 <td>Aberystwyth University</td> 39 <td>2025</td> 40 </tr> 41 <tr> 42 <td>Business Admin</td> 43 <td>Aberystwyth University</td> 44 <td>2020</td> 45 </tr> 46 </tbody> 47 </table> 48 </div> 49 <hr> 50 51 <div> 52 <h2>Interest</h2> 53 <table> 54 <thead> 55 <tr> 56 <th><em>What</em></th> 57 <th><em>Skills learned</em></th> 58 </tr> 59 </thead> 60 <tbody> 61 <tr> 62 <td>Programming</td> 63 <td><p> 64 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> 65 </td> 66 </tr> 67 <tr> 68 <td>Hiking</td> 69 <td>Map reading and navigation skills, takes frequent hikes to stay healthy</td> 70 </tr> 71 </tbody> 72 </table> 73 </div> 74 <hr> 75 76 <div> 77 <h2>History</h2> 78 <table> 79 <thead> 80 <tr> 81 <th><em>Where</em></th> 82 <th><em>Skills</em></th> 83 <th><em>When</em></th> 84 </tr> 85 </thead> 86 <tbody> 87 <tr> 88 <td>3 Heads Pub</td> 89 <td>Team management skills, Food standards, Handling stressful environments</td> 90 <td>2024-2025</td> 91 </tr> 92 </tbody> 93 </table> 94 95 </div> 96 <hr> 97 98 <div> 99 <h2>References</h2> 100 <table> 101 <thead> 102 <tr> 103 <th><em>Who</em></th> 104 <th><em>Contact</em></th> 105 </tr> 106 </thead> 107 <tbody> 108 <tr> 109 <td>Judith M.<br>Head chef at the 3 Heads Pub</td> 110 <td>074567890, <a href="mailto:jum41@aber.ac.uk">jum41@aber.ac.uk</a></td> 111 </tr> 112 <tr> 113 <td>Otar A.<br>Personal tutor at Aberystwyth University</td> 114 <td>0734214567, <a href="mailto:ota1@aber.ac.uk">ota1@aber.ac.uk</a></td> 115 </tr> 116 </tbody> 117 </table> 118 </div> 119 <hr> 120 </div> 121 122 123 <footer> 124 <br> 125 <a href="./index.html">Return to the amazing world of Lucas Standen</a> 126 <pre>This page contains false information and is for demonstration only</pre> 127 <a href="./disclaimer.html">Disclaimer</a> 128 <small id="pageLastChanged"></small> 129 <script src="scripts/lastmodified.js"></script> 130 </footer> 131 132 </html>