-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (36 loc) · 1.34 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lab 10</title>
<!-- Load CSS files -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<link rel="stylesheet" href="css/fontawesome.min.css">
<link rel="stylesheet" href="css/milligram.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<h1>Coffee House Chains</h1>
<h4>A ranking of selected leading coffee house chains worldwide</h4>
<select id="ranking-type" class="select-control">
<option value="stores">Stores worldwide</option>
<option value="revenue">Revenue in billion U.S. dollars</option>
</select>
<div id="chart-area"></div>
</div>
<div class="container">
<div id="scatter-area">Scatter</div>
</div>
<!-- <script src="js/d3.min.js"></script> -->
<script src="https://d3js.org/d3.v5.js"></script>
<!-- Load JS libraries: Vega-lite -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<!-- Your implementation -->
<script type="module" src="js/main.js"></script>
</body>
</html>