-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dots</title>
<!-- Twitter Card data -->
<meta name="twitter:card" value="Webpack basic starter project">
<meta name="Description" content="A simple HTML game called Dots."/>
<!-- Open Graph data -->
<meta property="og:title" content="Dots." />
<meta property="og:type" content="article" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta property="og:description" content="A simple HTML game called Dots." />
<!-- Mobile header color for Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#ff4970">
<!-- Mobile header color Windows Phone -->
<meta name="msapplication-navbutton-color" content="#ff4970">
<!-- Mobile header color for iOS Safari (supports black, black-translucent or default) -->
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
</head>
<body>
<header>
<span class="game-title">DOTS!</span>
</header>
<main role="main">
<div class="game-screen"></div>
</main>
<footer>
<div class="game-score">
<span class="score-text">Score:</span><span class="score">0</span>
</div>
<div class="game-toggle">
<button class="pause-button">Play</button>
</div>
<div class="game-slider">
<h4 class="slider-speed-text">Speed</h4>
<div class="slider-bar"></div>
<div class="slider-handle">
<div class="slider-ball"></div>
</div>
<h4 class="slider-speed">50</h4>
</div>
</footer>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-101423651-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-XXXX-2');
</script> -->
</body>
</html>