-
Notifications
You must be signed in to change notification settings - Fork 0
/
countries.html
45 lines (45 loc) · 1.67 KB
/
countries.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Countries</title>
<meta name="author" content="Mihir Gadgil">
<link rel="stylesheet" href="./css/countries.css" media="screen">
<script src="https://d3js.org/d3.v5.min.js"></script>
</head>
<body>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="countries.html" class="active">Countries</a></li>
<li><a href="athletes.html">Athletes</a></li>
</ul>
<h1>Countries</h1>
<div id="olympic-img"><img src="./img/Olympic_rings_without_rims.svg" alt="Olympic_rings_without_rims"></div>
<select name="Country" id="country-selector">
<option value="None">Select a country</option>
</select>
<select name="Sport" id="sport-selector">
<option value="None">Select a sport</option>
</select>
<br>
<div class="medals">
<figure id="gold-medal">
<img src="./img/Gold_medal.svg" alt="Gold medal">
<figcaption>0</figcaption>
</figure>
<figure id="silver-medal">
<img src="./img/Silver_medal.svg" alt="Silver medal">
<figcaption>0</figcaption>
</figure>
<figure id="bronze-medal">
<img src="./img/Bronze_medal.svg" alt="Bronze medal">
<figcaption>0</figcaption>
</figure>
</div>
<svg width=800 height=450 id="participation"></svg>
<svg width=800 height=450 id="performance"></svg>
<script src="./js/countries.js"></script>
</body>
</html>