-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (66 loc) · 2.77 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>2048</title>
<!-- Bootstrap -->
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/main.css?v=2016-11-17">
<link rel="shortcut icon" href="assets/ico/favicon.ico">
</head>
<body>
<div class="container">
<div id="playground">
<div class="row">
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div><div id="testing-number" class="number text-success bg-success">2048</div></div></div>
<div class="cell col-md-3"><div> </div></div>
</div>
<div class="row">
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div> </div></div>
</div>
<div class="row">
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div> </div></div>
</div>
<div class="row">
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div> </div></div>
<div class="cell col-md-3"><div> </div></div>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="pull-left">
<span>Powered by:</span>
<i class="fa fa-hashtag" aria-hidden="true"></i><a target="_blank" href="http://getbootstrap.com/" title="Bootstrap">Bootstrap</a>
<i class="fa fa-hashtag" aria-hidden="true"></i><a target="_blank" href="https://jquery.com/" title="jQuery">jQuery</a>
<i class="fa fa-hashtag" aria-hidden="true"></i><a target="_blank" href="http://fontawesome.io/icons/" title="Font Awesome 4.6.3">FontAwesome</a>
</div>
<div class="pull-right">
<span>Created by:</span>
<a target="_blank" href="http://gunis.sk" title="gunis | sk * Freelancer & Webdeveloper">Juraj Guniš</a>
</div>
</div>
</footer>
<!-- jquery.min.js -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<!-- bootstrap.min.js -->
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- main.js -->
<script src="assets/js/main.js"></script>
</body>
</html>