-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A visualization of the world population in 2021.">
<link rel="stylesheet" href="css/style.css">
<title>World Population</title>
<link rel="icon" href="img/globe.ico">
</head>
<body>
<div id="header">
<h1 id="page-title">2021 World Population Visualization</h1>
<div id="color-scale"></div>
</div>
<div id="globe-container"></div>
<div id="tooltip" style="display: none;">
<div id="name-flag-container">
<b><span id="tooltip-country-name"></span></b>
<img id="tooltip-flag"></img>
</div>
Ranking: <span id="tooltip-rank"></span>
<br/>
Population: <span id="tooltip-population"></span>
<br/>
Density: <span id="tooltip-density"></span>
<br/>
Area: <span id="tooltip-area"></span>
</div>
<!-- IMPORT D3 V.5 -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="js/index.js" defer></script>
</body>
</html>