-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>2048</title>
<link rel="icon" href="icons/favicon.ico">
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png">
<link href="https://fonts.googleapis.com/css?family=Oxygen:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="main.css">
<script src="main.js"></script>
</head>
<body>
<div id="game">
<div id="board">
<div id="tiles">
<div id="tile1" class="tile"></div>
<div id="tile2" class="tile"></div>
<div id="tile3" class="tile"></div>
<div id="tile4" class="tile"></div>
<div id="tile5" class="tile"></div>
<div id="tile6" class="tile"></div>
<div id="tile7" class="tile"></div>
<div id="tile8" class="tile"></div>
<div id="tile9" class="tile"></div>
<div id="tile10" class="tile"></div>
<div id="tile11" class="tile"></div>
<div id="tile12" class="tile"></div>
<div id="tile13" class="tile"></div>
<div id="tile14" class="tile"></div>
<div id="tile15" class="tile"></div>
<div id="tile16" class="tile"></div>
</div>
<div id="result-box">
<div id="result-background"></div>
<div id="result-message"></div>
<div id="result-tile-container">
<div id="result-tile"></div>
</div>
<button id="keep-going-button" class="result-button">Keep Going</button>
<button id="try-again-button" class="result-button">Try Again</button>
</div>
</div>
<div id="message-box"></div>
<div id="menu">
<i id="restart" class="fa fa-refresh" aria-hidden="true"></i>
<div id="title">2048<sub id="credit">
<a href="https://www.github.com/nimisha-yadav" target="_blank">NY</a>
</sub></div>
<i id="simulate" class="fa fa-laptop" aria-hidden="true"></i>
</div>
</div>
</body>
</html>