-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 80aa733
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<!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>Use the interactive charts below to explore the dataset</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> | ||
<style> | ||
#selDataset { | ||
color: black; | ||
} | ||
|
||
#selDataset option { | ||
border: 1px solid black; /* Add blue border to dropdown options */ | ||
} | ||
.card-body { | ||
border: 1px solid gray; /* Add blue border to card body */ | ||
} | ||
</style> | ||
<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> |