-
Notifications
You must be signed in to change notification settings - Fork 0
/
ghdashboards.html
103 lines (91 loc) · 5.71 KB
/
ghdashboards.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Head content (meta, title, link to CSS) -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Global Health Dashboards - Calebridgwater.com</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">Curriculum Vitae</a></li>
<li><a href="ghdashboards.html" class="active"> Global Health Dashboards</a></li>
</ul>
</nav>
</div>
</header>
<!-- Resource Category Banner -->
<section class="resource-banner">
<div class="container">
<h1>Global Health Dashboards</h1>
<p>This page features a currated list of dashboards on a wide-range of global public health topics.</p>
</div>
</section>
<!-- Tiles Grid -->
<section class="tiles-grid">
<div class="container">
<!-- Example of a Tile -->
<div class="resource-tile" onclick="window.location.href='external-link-url';">
<img src="https://some-thumbnail-service.com/?url={URL_OF_THE_LINKED_RESOURCE}" alt="Thumbnail"> */ replace '{URL_OF_THE_LINKED_RESOURCE}' with the actual website url and a thumbnail will automatically be generated for it. */
<h3>Resource Title</h3>
<p class="resource-description">Short description of the resource.</p>
</div>
<div class="resource-tile" onclick="window.location.href='external-link-url';">
<img src="https://some-thumbnail-service.com/?url={URL_OF_THE_LINKED_RESOURCE}" alt="Thumbnail"> */ replace '{URL_OF_THE_LINKED_RESOURCE}' with the actual website url and a thumbnail will automatically be generated for it. */
<h3>Resource Title</h3>
<p class="resource-description">Short description of the resource.</p>
</div>
<div class="resource-tile" onclick="window.location.href='external-link-url';">
<img src="https://some-thumbnail-service.com/?url={URL_OF_THE_LINKED_RESOURCE}" alt="Thumbnail"> */ replace '{URL_OF_THE_LINKED_RESOURCE}' with the actual website url and a thumbnail will automatically be generated for it. */
<h3>Resource Title</h3>
<p class="resource-description">Short description of the resource.</p>
</div>
<div class="resource-tile" onclick="window.location.href='external-link-url';">
<img src="https://some-thumbnail-service.com/?url={URL_OF_THE_LINKED_RESOURCE}" alt="Thumbnail"> */ replace '{URL_OF_THE_LINKED_RESOURCE}' with the actual website url and a thumbnail will automatically be generated for it. */
<h3>Resource Title</h3>
<p class="resource-description">Short description of the resource.</p>
</div>
<div class="resource-tile" onclick="window.location.href='external-link-url';">
<img src="https://some-thumbnail-service.com/?url={URL_OF_THE_LINKED_RESOURCE}" alt="Thumbnail"> */ replace '{URL_OF_THE_LINKED_RESOURCE}' with the actual website url and a thumbnail will automatically be generated for it. */
<h3>Resource Title</h3>
<p class="resource-description">Short description of the resource.</p>
</div>
<div class="resource-tile" onclick="window.location.href='external-link-url';">
<img src="https://some-thumbnail-service.com/?url={URL_OF_THE_LINKED_RESOURCE}" alt="Thumbnail"> */ replace '{URL_OF_THE_LINKED_RESOURCE}' with the actual website url and a thumbnail will automatically be generated for it. */
<h3>Resource Title</h3>
<p class="resource-description">Short description of the resource.</p>
</div>
<div class="resource-tile" onclick="window.location.href='external-link-url';">
<img src="https://some-thumbnail-service.com/?url={URL_OF_THE_LINKED_RESOURCE}" alt="Thumbnail"> */ replace '{URL_OF_THE_LINKED_RESOURCE}' with the actual website url and a thumbnail will automatically be generated for it. */
<h3>Resource Title</h3>
<p class="resource-description">Short description of the resource.</p>
</div>
<div class="resource-tile" onclick="window.location.href='external-link-url';">
<img src="https://some-thumbnail-service.com/?url={URL_OF_THE_LINKED_RESOURCE}" alt="Thumbnail"> */ replace '{URL_OF_THE_LINKED_RESOURCE}' with the actual website url and a thumbnail will automatically be generated for it. */
<h3>Resource Title</h3>
<p class="resource-description">Short description of the resource.</p>
</div>
<div class="resource-tile" onclick="window.location.href='external-link-url';">
<img src="https://some-thumbnail-service.com/?url={URL_OF_THE_LINKED_RESOURCE}" alt="Thumbnail"> */ replace '{URL_OF_THE_LINKED_RESOURCE}' with the actual website url and a thumbnail will automatically be generated for it. */
<h3>Resource Title</h3>
<p class="resource-description">Short description of the resource.</p>
</div>
<!-- More tiles-->
</div>
</section>
<!-- Shared Footer -->
<footer>
<div class="container">
<p>© 2024 Caleb Bridgwater. All Rights Reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>