-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCV.html
58 lines (55 loc) · 2.05 KB
/
CV.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hugh Stanway website</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="https://kit.fontawesome.com/cbe6f4a5fa.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Website heading-->
<header class="header">
<h1>Hugh Stanway</h1>
<p>First Year Student at UCL</p>
</header>
<!-- Navigation -->
<div class="navbar">
<a href="index.html"><i class="fa fa-fw fa-home"></i> Home</a>
<a href="Projects.html"><i class="fa fa-fw fa-pencil-alt"></i> Projects</a>
<a href="Links.html"><i class="fa fa-fw fa-link"></i> Links</a>
<a class="active" href="CV.html"><i class="fa fa-fw fa-newspaper"></i> CV</a>
<a class='btn'> Dark</a>
</div>
<!--
<h1>Home</h1>
<p id="msg">Home:</p>
<ul>
<li class="list">Add visual styles</li>
<li class="list">Add light and dark themes</li>
<li>Enable switching the theme</li>
</ul>
-->
<div class="row">
<div class="column side">
<h2>Hugh Stanway - CV</h2>
<p> Coming soon.</p>
</div>
<div class="column middle">
<h2>Contact.</h2>
<a href="https://github.com/HughStanway" target="_blank"><i class='fab fa-github fa-3x'></i></a>
<a href="https://www.linkedin.com" target="_blank"><i class='fab fa-linkedin fa-3x'></i></a>
<p></p>
</div>
</div>
<footer class="footer">
<p>All rights reserved</p>
<i class="material-icons" style="font-size: 14px">email</i><a href="mailto:[email protected]">[email protected]</a></p>
</footer>
<body class="light-theme"></body>
<script src="app.js"></script>
<noscript>You need to enable JavaScript to view the full site.</noscript>
</body>
</html>