forked from gabrielecirulli/2048
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 2.04 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>
<html lang="en" manifest="cache.appcache">
<head>
<meta charset="utf-8">
<title>2048 Index</title>
<link href="style/main.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="meta/apple-touch-icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0, maximum-scale=1, user-scalable=no, minimal-ui">
</head>
<body>
<div class="container">
<div class="heading">
<h1 class="title">2048 Index</h1>
</div>
<p class="game-intro"><strong>2048 tile!</strong> clones</p>
<ul>
<li><a href="http://gabrielecirulli.github.io/2048/">2048</a></li>
<li><a href="http://emils.github.io/2048-multiplayer/">2048-multiplayer</a></li>
<li><a href="http://ov3y.github.io/2048-AI/">2048-AI</a></li>
<li><a href="https://github.com/bfontaine/term2048">term2048</a></li>
<li><a href="http://doge2048.com/">doge2048</a></li>
<li><a href="http://joppi.github.io/2048-3D/">2048-3D</a></li>
<li><a href="http://huonw.github.io/2048-4D/">2048-4D</a></li>
<li><a href="http://rudradevbasak.github.io/16384_hex/">16384_hex</a></li>
<li><a href="http://prat0318.github.io/2048-tetris/">2048-tetris</a></li>
<li><a href="http://hczhcz.github.io/Flappy-2048/">Flappy-2048</a></li>
</ul>
<hr>
</div>
<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-23032107-5", "marciotoshio.github.io");
ga("send", "pageview");
</script>
</body>
</html>