-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (48 loc) · 1.78 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
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<meta charset="utf-8">
<!-- Google fonts -->
<link href='https://fonts.googleapis.com/css?family=Oswald:400,300,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway:100,300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
<!-- D3 -->
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="js/crossfilter.min.js"></script>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<!-- Bootstrap -->
<!-- Combobox script for the search box -->
<link rel="stylesheet" href="css/tooltip.css"/>
<link rel="stylesheet" href="css/style.css"/>
<script src="js/showTooltip.js"></script>
<script src="js/createLegend.js"></script>
<script src="js/helperFunctions.js"></script>
<header>
<h1>IcyHawaiian Diving</h1>
</header>
<body>
<div id="intro">
<h2>Dive log</h2>
<span>Just trying some new things out based on other exising webpages.</span><br>
<span>Hopefully a more exotic way of visualising a pointless data set. Who knows</span><br>
</div>
<!-- chart -->
<div id="chart"></div>
<div id="note">
<span>Experimenting by ASLeonard</span><br>
<span>Still working on full features, but click <a href="dive_network.html">HERE</a></a></span>
</div>
<!-- Create div structure for Tooltip -->
<div id="tooltip">
<div id="tooltip-Container">
<div class="tooltip-band"></div>
<div class="tooltip-rule"></div>
<div id="tooltip-year"></div>
<div id="tooltip-title"></div>
<div id="tooltip-place"></div>
<div id="tooltip-place2"></div>
<div class="tooltip-tail"></div>
</div>
</div>
<script src="js/mainCode.js"></script>
</body>
</html>