-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathindex.htm
59 lines (50 loc) · 1.87 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<title>2048</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Comfortaa:400,700,300|Open+Sans" />
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1,user-scalable=0"/>
</head>
<body>
<header>
<h1>2048</h1>
<div>
<p id="score">Score</p>
<p><a>Try again?</a> <a id="share" href="https://twitter.com/home?status=Playing%20the%20%232048%20game,%20go%20check%20it%20out!%20saming.fr/p/2048">Share on Twitter</a></p>
</div>
</header>
<div id="game">
<div id="grid">
<div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div>
<div></div><div></div><div></div><div></div>
</div>
<div id="touch">
<div></div><div></div><div></div><div></div>
</div>
</div>
<div id="bar"><div></div></div>
<div id="text">
<p>Level 0</p>
<p>Best Score</p>
</div>
<nav><a href="help/">How to play</a> <a href="mp/">Multiplayer</a> <a href="faq/">FAQ</a> <a href="donate/">Donate!</a></nav>
<footer>
Coded by <a href="/">Saming</a>,
with an original concept by <a href="https://play.google.com/store/apps/details?id=com.veewo.a1024">Veewo Studio</a>.
Fork me on <a href="https://github.com/saming/2048">Github</a>.
</footer>
<script src="script.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-20598833-2', 'saming.fr');
ga('send', 'pageview');
</script>
</body>
</html>