-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot.html
More file actions
26 lines (22 loc) · 1.09 KB
/
plot.html
File metadata and controls
26 lines (22 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>The truth is out there</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</head>
<body>
<div class="buttons-plot">
<button id="plothref" class="btn btn-primary bg-dark">Plot</button>
<div>After finishing enjoying the plot please click <button id="plothref" class="btn btn-primary bg-dark" onclick="window.history.back()">GO BACK</button></div>
</div>
<div id="dataplot">
</div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="plot.js"></script>
</body>
</html>