Skip to content

Commit

Permalink
html file updated
Browse files Browse the repository at this point in the history
  • Loading branch information
RoshniRanaDS27 committed Jun 10, 2024
0 parents commit 80aa733
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions index.html
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>

0 comments on commit 80aa733

Please sign in to comment.