-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
42 lines (39 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Caleb Bridgwater - Academic Curriculum Vitae</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header / Navigation Bar -->
<header>
<div class="container">
<h1>Caleb Bridgwater</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="cv.html" class="active">Curriculum Vitae</a></li>
<li><a href="ghdashboards.html"> Global Health Dashboards</a></li>
</ul>
</nav>
</div>
</header>
<!-- CV Section -->
<section class="cv">
<div class="container">
<h2>Academic and Professional Curriculum Vitae</h2>
<!-- Content of CV here -->
<!-- Example: Education, Experience, Publications, Awards, Skills -->
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2024 Caleb Bridgwater. All Rights Reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>