-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (57 loc) · 1.79 KB
/
Copy pathindex.html
File metadata and controls
58 lines (57 loc) · 1.79 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Visualization Lab 3</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script defer src="https://d3js.org/d3.v6.min.js"></script>
<script defer src="main.js"></script>
</head>
<body>
<div class="container">
<h2>
Population in European Cities
</h2>
<div class="city-count"></div>
<div class="population-plot"></div>
<div class="row">
<div class="column">
<h2>
World's Tallest Buildings
</h2>
<div class="building-bar"></div>
</div>
<div class="column">
<img class="image"/>
</div>
<div class="column" id="building-table">
<h4 class="building-name"></h4>
<table>
<tbody>
<tr>
<td>Height</td>
<td><span class="height"></span> ft</td>
</tr>
<tr>
<td>City</td>
<td><span class="city"></span></td>
</tr>
<tr>
<td>Country</td>
<td><span class="country"></span></td>
</tr>
<tr>
<td>Floors</td>
<td><span class="floors"></span></td>
</tr>
<tr>
<td>Completed</td>
<td><span class="completed"></span></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>