-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (47 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bellybutton Biodiversity</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12 p-5 text-center bg-light">
<h1>Belly Button Biodiversity Dashboard</h1>
<p><i>Use the interactive charts below to explore the dataset.</i></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-3">
<div class="card card-body bg-light">
<h6>Test Subject ID Number:</h6>
<select id="selDataset" onchange="optionChanged(this.value)"></select>
</div>
<br>
<div class="card card-primary">
<div class="card-header">
<h4 class="card-title">Demographic Info</h4>
</div>
<div id="sample-metadata" class="card-body"></div>
</div>
</div>
<div class="col-md-9">
<div id="bar"></div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="bubble"></div>
</div>
</div>
</div>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="./static/js/app.js"></script>
</body>
</html>