-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
71 lines (65 loc) · 4.55 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="utf-8" />
<title>quizzity - a geography game</title>
<meta name="author" content="David Peter">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="quizzity is a geographical quiz where you have to guess the location of several cities on a world map while receiving points for being both accurate and fast.">
<meta name="keywords" content="quiz, game, geography, cities, capitals, world, map, teaching, learning, educational, open source">
<meta property="og:type" content="website">
<meta property="og:image" content="https://david-peter.de/quizzity/icon/quizzity.png">
<meta property="og:title" content="quizzity - a geography game">
<meta property="og:url" content="https://david-peter.de/quizzity/">
<meta property="og:description" content="quizzity is a geographical quiz where you have to guess the location of several cities on a world map while receiving points for being both accurate and fast.">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@sharkdp86">
<meta name="twitter:title" content="quizzity - a geography game" />
<meta name="twitter:description" content="quizzity is a geographical quiz where you have to guess the location of several cities on a world map while receiving points for being both accurate and fast." />
<meta name="twitter:image:src" content="https://david-peter.de/quizzity/icon/quizzity.png" />
<meta name="twitter:image:width" content="800" />
<meta name="twitter:image:height" content="420" />
<meta name="twitter:url" content="https://david-peter.de/quizzity/" />
<link rel="icon" type="image/png" href="icon/quizzity-196.png" sizes="196x196">
<link rel="icon" type="image/png" href="icon/quizzity-32.png" sizes="32x32">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css">
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="bower_components/Leaflet.awesome-markers/dist/leaflet.awesome-markers.css">
<link rel="stylesheet" href="bower_components/animate.css/animate.min.css">
<link rel="stylesheet" href="css/quizzity.css">
</head>
<body>
<div id="map"></div>
<div id="panel"><i class="fa fa-spinner fa-pulse"></i> <i>Loading game...</i></div>
<div id="dialog">
<h1 id="dialogTitle">qui<span class="zz">zz</span>ity</h1>
<div id="dialogContent">
<ul class="fa-ul">
<li><i class="fa-li fa fa-location-arrow"></i>Guess the location of six cities.</li>
<li><i class="fa-li fa fa-search-plus"></i>Zoom in to be more accurate.</li>
<li><i class="fa-li fa fa-trophy"></i>Receive bonus points for being fast.</li>
</ul>
</div>
<p class="buttons">
<button type="button" id="start"><i class="fa fa-hand-o-right"></i> <span id="dialogLabel">Start game!</span></button>
</p>
</div>
<div id="points"></div>
<div id="github"><a target="_blank" href="https://github.com/sharkdp/quizzity"><i class="fa fa-github"></i> Source on GitHub</a></div>
<div id="paypal"><a target="_blank" href="https://paypal.me/sharkfishsoftware"><i class="fa fa-paypal"></i> Support this game</a></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="bower_components/lodash/lodash.min.js"></script>
<script src="bower_components/Leaflet.awesome-markers/dist/leaflet.awesome-markers.min.js"></script>
<script src="bower_components/Leaflet.Geodesic/Leaflet.Geodesic.min.js"></script>
<script src="js/quizzity.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-39945208-2', 'david-peter.de');
ga('send', 'pageview');
</script>
</body>
</html>