-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.html
82 lines (71 loc) · 3.63 KB
/
data.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ZooPOP || Data</title>
<!-- * font awesome 6 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- * google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap" rel="stylesheet">
<!-- * google charts library -->
<script src="https://www.gstatic.com/charts/loader.js"></script>
<!-- * javascript file -->
<script src="script.js"></script>
<!-- * style -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- * header content -->
<header id="header">
<!-- * navbar -->
<nav class="navbar navbar-expand-lg bg-black bg-opacity-50 fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">ZooPOP</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarToggler" aria-controls="navbarToggler" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse flex-grow-0" id="navbarToggler">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="data.html">Data</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Games
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="quiz.html">Quiz</a></li>
<li><a class="dropdown-item" href="aquarium.html">Aquarium</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="resources.html">Resources</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- * main content -->
<main>
<h1 class="text-center">Zooplankton Data</h1>
<!-- * introduction -->
<div class="data-introduction container">
<h2>Where did this data come from?</h2>
<p>All of the data on this page is brought to you by students of Hawaii Pacific University who went out on the Kaholo, a 42 ft. x 20 ft. twin diesel power catamaran, in 2022 and 2023. On the <a href="resources.html">Resources</a> page, you can find a link to the Hawaii Pacific University page that provides more detail about the Kaholo, where it came from, and what it is used for by the university.</p>
</div>
<!-- * pie chart container -->
<div class="container">
<div id="chartZooplanktonCount"></div>
</div>
</main>
<!-- * bootstrap js -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
</body>
</html>