-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (42 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
normalize.css removes cross-browser differences in defaults, e.g.,
differences in how form elements appear between Firefox and IE
See: http://necolas.github.com/normalize.css/
-->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/game.css">
<!--
application.css is where you put your styles
-->
<link rel="stylesheet" href="css/application.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/mousetrap.js"></script>
<script src="js/underscore.js"></script>
<script src="js/game.js"></script>
<script src="js/application.js"></script>
<title>256!</title>
</head>
<body>
<section id="cards">
<div class="card-space border-top border-left"><p><i></i></p></div>
<div class="card-space border-top"><p><i></i></p></div>
<div class="card-space border-top"><p><i></i></p></div>
<div class="card-space border-top border-left"><p><i></i></p></div>
<div class="card-space border-right"><p><i></i></p></div>
<div class="card-space"><p><i></i></p></div>
<div class="card-space"><p><i></i></p></div>
<div class="card-space border-right"><p><i></i></p></div>
<div class="card-space border-left"><p><i></i></p></div>
<div class="card-space"><p><i></i></p></div>
<div class="card-space"><p><i></i></p></div>
<div class="card-space border-right"><p><i></i></p></div>
<div class="card-space border-left border-bottom"><p><i></i></p></div>
<div class="card-space border-bottom"><p><i></i></p></div>
<div class="card-space border-bottom"><p><i></i></p></div>
<div class="card-space border-bottom border-right"><p><i></i></p></div>
</section>
</body>
</html>