-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (72 loc) · 3.58 KB
/
index.html
File metadata and controls
72 lines (72 loc) · 3.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<script>
document.addEventListener("DOMContentLoaded", function() {
document.body.classList.add("dark-mode");
});
</script>
</head>
<body>
<header class="bg-primary text-white p-3">
<div class="container d-flex justify-content-between align-items-center">
<h1>Home</h1>
<button class="hamburger" id="hamburger-btn">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
<nav id="navbar" class="navbar">
<ul class="nav">
<li class="nav-item"><a href="index.html" class="nav-link text-white">Home</a></li>
<li class="nav-item"><a href="maps.html" class="nav-link text-white">Maps</a></li>
<li class="nav-item"><a href="csvs.html" class="nav-link text-white">CSV Data</a></li>
<li class="nav-item"><a href="instructions.html" class="nav-link text-white">Getting Started</a></li>
<li class="nav-item"><a href="about.html" class="nav-link text-white">About</a></li>
</ul>
</nav>
</div>
</header>
<main class="container main-container my-5">
<h1 class="greeting mb-4">Welcome to QIceRadar</h1>
<p class="lead">QIceRadar aims to visualize and provide access to the vast amounts of data collected by various institutions on Antarctic research.</p>
<p>Explore our platform to find maps, download CSV data, and learn more about our project.</p>
<div class="row row-cols-1 row-cols-md-2 g-4 mt-5">
<div class="col">
<div class="card-custom card-custom-container">
<h2>Maps</h2>
<p>Visualize the coverage of Antarctic research data by various institutions.</p>
<a href="maps.html" class="btn btn-primary">Explore Maps</a>
</div>
</div>
<div class="col">
<div class="card-custom card-custom-container">
<h2>CSV Data</h2>
<p>Download detailed CSV files of data statistics from various institutions.</p>
<a href="csvs.html" class="btn btn-primary">Download CSV Data</a>
</div>
</div>
<div class="col">
<div class="card-custom card-custom-container">
<h2>Getting Started</h2>
<p>Begin using the QIceRadar Plugin.</p>
<a href="instructions.html" class="btn btn-primary">QIceRadar Instructions</a>
</div>
</div>
</div>
</main>
<footer class="bg-primary text-white text-center py-2">
<p>© University of Washington - Applied Physics Laboratory 2024</p>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>