-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (60 loc) · 2.68 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
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CI Sentinel - Home</title>
<link rel="stylesheet" href="./resources/styles/index.css">
<meta name="description" content="CI Sentinel maps America's critical infrastructure for analysis and exploration.">
<meta name="keywords" content="Critical Infrastructure, Map, CI Sentinel, United States">
<meta name="author" content="Your Name">
</head>
<body>
<!-- Navbar -->
<nav>
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="mixed_datasets.html">Datasets</a></li>
<!-- <li><a href="donate.html">Donate</a></li> -->
</ul>
</nav>
<!-- Introduction Section -->
<div class="container">
<!-- Introduction Section -->
<section class="intro centered-content">
<h1>Welcome to CI Sentinel</h1>
<p>A comprehensive map of America's critical infrastructure.</p>
<p>Explore and analyze the critical assets that power the nation.</p>
<!-- <a href="about.html" id="learn-more-btn">Learn More</a> -->
</section>
<!-- Lorem Ipsum Text -->
<!-- <section class="content centered-content">
<h2>About Our Project</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam in venenatis enim. Nullam fermentum, nisl vel tristique cursus, mauris magna vulputate lorem, nec tempor nunc sapien at nulla.</p>
</section> -->
<!-- Vertical Image Gallery -->
<div class="centered-content">
<section class="gallery">
<h2>Infrastructure Highlights</h2>
<div class="vertical-images">
<img src="resources/assets/hawaii_example/Hawaii_county_map.png" alt="Infrastructure 1">
<p>All Critical Infrastructure on Hawaii Island.</p>
<img src="resources/assets/hawaii_example/top_20_facilities_Hawaii.png" alt="Infrastructure 2">
<p>Top 20 facilities on Hawaii Island.</p>
<img src="resources/assets/hawaii_example/top_5_aggregate_Hawaii.png" alt="Infrastructure 3">
<p>Top 5 aggregate points on Hawaii Island.</p>
<img src="resources/assets/hawaii_example/hawaii_text_file.png" alt="Infrastructure 4">
<p>Text file produced for each county.</p>
<img src="resources/assets/hawaii_example/all_facilities_Hawaii.png" alt="Infrastructure 4">
<p>All of Hawaii.</p>
</div>
</section>
</div>
</div>
<!-- Footer -->
<footer>
<p>© 2024 CI Sentinel</p>
<p>Created by Thomas Numnum</p>
</footer>
</body>
</html>