forked from zimmicz/outline-maps-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 3.05 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
49
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
<title>Outline Maps of the World</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.2.0/dist/leaflet.css" integrity="sha512-M2wvCLH6DSRazYeZRIm1JnYyh22purTM+FDB5CsyxtQJYeKq83arPe5wgbNmcFXGqiSH2XR8dT/fJISVA1r/zQ==" crossorigin=""/>
<link rel="stylesheet" type="text/css" href="css/map.css">
<script src="https://unpkg.com/leaflet@1.2.0/dist/leaflet.js" integrity="sha512-lInM/apFSqyy1o6s89K4iQUKg6ppXEgsVxT35HbzUupEVRh2Eu9Wdl4tHj7dZO0s1uvplcYGmt3498TtHq+log==" crossorigin=""></script>
<script src="js/config.js"></script>
</head>
<body>
<a href="https://github.com/zimmicz/outline-maps-world"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/e7bbb0521b397edbd5fe43e7f760759336b5e05f/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png"></a>
<div id="map"></div>
<section id="list">
<h1>Outline Maps</h1>
<p>A very simple game that helps you realize where countries, states, counties, cities or rivers actually are in the world.</p>
<h2>Available games</h2>
<table></table>
</section>
<div id="welcome">
<div>
<h1>Outline Maps</h1>
<p>A very simple game that helps you realize where countries, states, counties, cities or rivers actually are in the world.</p>
<h2>How to play</h2>
<p>Once you hit the button below, we'll pull the trigger and the stopwatch will start counting. That's it. Simple, isn't it?</p>
<h2>Remember</h2>
<ul>
<li style="background: rgba(194, 153, 121, 0.3)">Pale taupe is what you're asked about</li>
<li style="background: rgba(35, 165, 28, 0.3)">Green means you were right</li>
<li style="background: rgba(167, 29, 49, 0.3)">Red means you were wrong</li>
<li>Once you're finished, view right answers by hovering your mouse over the map</li>
</ul>
<p>
<label for="remember">
<input id="remember" type="checkbox" value="remember" checked>
<span>Don't show me this again</span>
</label>
</p>
<button id="play">I want to play</button>
</div>
</div>
<script src="js/map.js"></script>
<script src="js/timer.control.js"></script>
<script src="js/result.control.js"></script>
<script src="js/answer.control.js"></script>
</body>
</html>