-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (42 loc) · 1.93 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
<!Doctype html>
<html lang="en-US">
<head>
<title>Geo Country Map</title>
<meta charset="utf-8">
<meta name="author" content="Anuj Yadav (yadavanuj1996)">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="Country finder is a game to challenge and learn about the location of a country on world map, fun way to learn geography and score amongst your friends.">
<meta name="keywords" content="country finder,Geography,world map,geography game,game">
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://d3js.org/topojson.v2.min.js">
</script>
<script src="https://code.responsivevoice.org/responsivevoice.js?key=Jmfc3A8k"></script>
<script src="./script.babel"></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="details-div">
<p id="points-holder">P<span class="sm-hidden">oints</span>: <span id="points">0</span></p>
<p id="attempts-holder">A<span class="sm-hidden">ttempts Left</span>: <span id="attmepts">3</span></p>
<h2 id="country-name">Country Name:</h2>
<p id="questions-holder">Q<span class="sm-hidden">uestions Left</span>: <span id="questions">10</span></p>
<p id="time-holder">T<span class="sm-hidden">ime Remaining</span>: <span id="time">20</span>s</p>
</div>
<div id="svg-holder"></div>
<div id="completion-indicator-holder">
<div id="completion-indicator"></div>
</div>
<div class="heart movement-1 hide-display"></div>
<div class="heart movement-2 hide-display"></div>
<div class="heart movement-3 hide-display"></div>
<div class="heart movement-4 hide-display"></div>
<div class="heart movement-5 hide-display"></div>
<div class="heart movement-6 hide-display"></div>
<div class="hide-display" id="heart-holder">
<div class="mobile-heart"></div>
</div>
<div class="hide-display" id="x-mark-holder">
<div class="x-mark x-mark-zoom-in-out"></div>
</div>
</body>
</html>