-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (76 loc) · 3.16 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
72
73
74
75
76
77
78
79
80
<html lang="he">
<head>
<meta charset="utf-8" />
<title>Timer For Settlers Of Catan</title>
<!-- <link rel=manifest href=manifest.json> -->
<meta name=mobile-web-app-capable content=yes>
<meta name=application-name content="Settlers Timer">
<link rel=icon sizes=192x192 href="imgs/settlers-icon-256x256.png">
<meta name=apple-mobile-web-app-capable content=yes>
<meta name=apple-mobile-web-app-status-bar-style content=black>
<meta name=apple-mobile-web-app-title content="Settlers Timer">
<link rel=apple-touch-icon href=imgs/settlers-icon-256x256.png> <meta name=msapplication-TileImage content=imgs/settlers-icon-256x256.png>
<meta name=msapplication-TileColor content=#2196F3>
<meta name=theme-color content=#2196F3>
<meta property=og:title content="Settlers Timer">
<meta property=og:type content=website>
<meta property=og:image content=imgs/settlers-icon-256x256.png> <meta property=og:url content="https://github.com/greenido">
<meta property=og:description content="The best and easiest way to play Settlers Of Catan in a limited time and have fun!">
<meta name=twitter:card content=summary>
<meta name=twitter:url content="https://github.com/greenido">
<meta name=twitter:title content="Settlers Timer">
<meta name=twitter:description content="The best and easiest way to play Settlers Of Catan in a limited time and have fun!">
<meta name=twitter:image content=imgs/settlers-icon-256x256.png> <meta name=twitter:creator content=@greenido>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="fa fa-question-circle help-icon"></div>
<div id='help-area'>
<div class="fa fa-times-circle-o close-but"></div>
<p class="help-text">This is a tool that let you time each player in your <b>Settlers Of Catan Game.</b>
<br>A game of 15min per player is something we like and recommand you to try.
<br>Have fun!
</p>
</div>
<section id="welcome">
<h1>🦁 Settlers Of Catan Timer 🕰</h1>
<div id='status'>
<div class="fa fa-times-circle-o close-but"></div>
<button id="start-game-but">Start A New Game</button>
</div>
<div class="timer-container">
<div class="add-timer">
<div class="fa fa-plus-circle"></div>
</div>
</div>
<br><br>
<div id="kids">
<img src="https://farm4.staticflickr.com/3797/13819192673_03feae3f8e_c.jpg" alt="The boys!"></div>
</section>
<hr>
<footer>
<a href="https://ido-green.appspot.com" target="_blank">Ido's Talks and Code</a><br>
<small>Updated: Feb 2019</small>
</footer>
<!-- JS -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="site.js"></script>
<!-- GA -->
<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-27750723-1', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
</body>
</html>