-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (52 loc) · 2.31 KB
/
index.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
<!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 CV & Resources</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header / Navigation Bar -->
<header>
<div class="container">
<h1>Curriculum Vitea and Currated Research Resources from Caleb Bridgwater</h1>
<nav>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="cv.html">Curriculum Vitae</a></li>
<li><a href="ghdashboards.html"> Global Health Dashboards</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<h2>Welcome to my website, an academic CV and collection of global public health and biomedical research resources!</h2>
<p>I am a passionate global public health researcher and working towards transforming the health systems around us alongside anyone I can! Here you can access my online Curriculum Vitae as well as a collection of research and academic resources I have collected, organized, and currated over my schooling and career so far.</p>
</div>
</section>
<!-- Placeholder for CV Section -->
<section id="cv" class="content-section">
<div class="container">
<h2>Caleb's Curriculum Vitae</h2>
<p>Experienced researcher with an MSc in Global Health and over five years of experience. Skilled in study design for public health and basic science, adapting to new research settings, and a proven leader in promoting diversity and inclusion in collaborative health projects.</p>
</div>
</section>
<!-- Placeholder for Resources Section -->
<section id="resources" class="content-section">
<div class="container">
<h2>Resources</h2>
<p>A curated list of academic, research, and global health resources.</p>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2024 Caleb Bridgwater. All Rights Reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>