-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 865 Bytes
/
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
<!DOCTYPE html>
<html>
<title>Sliding Blocks</title>
<body>
<div style="height:120px; width:400px; float:left;"></div>
<div id="container">
<div class="board"></div>
</div>
<div class="indicator">
2 3 4 5 6 7 8 9
</div>
<div class="slider-body">
<div class="handler"></div>
</div>
<h1>Shuffle and click!</h1>
<div class="solve">Resolve</div>
</body>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="jquery-2.1.4.min.js"></script>
<script src="jquery-ui-1.9.2.min.js"></script>
<script src = "priority-queue.js"></script>
<script src="script.js"></script>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:600' rel='stylesheet' type='text/css'>
</html>