-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (76 loc) · 2.42 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
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<title>Slider Puzzle</title>
<link rel="stylesheet" href="puzzle.css" type="text/css">
</head>
<body>
<header>
<h1>Slider Puzzle</h1></header>
<div id="puzzle">
<div id="puzzleGrid">
<table>
<tr>
<td id="cell11">
<img src="box-kitties/07.jpg" alt="7" height="100" width="100">
</td>
<td id="cell12">
<img src="box-kitties/06.jpg" alt="6" height="100" width="100">
</td>
<td id="cell13">
<img src="box-kitties/14.jpg" alt="14" height="100" width="100">
</td>
<td id="cell14">
<img src="box-kitties/11.jpg" alt="11" height="100" width="100">
</td>
</tr>
<tr>
<td id="cell21">
<img src="box-kitties/12.jpg" alt="12" height="100" width="100">
</td>
<td id="cell22">
<img src="box-kitties/16.jpg" alt="16" height="100" width="100">
</td>
<td id="cell23">
<img src="box-kitties/05.jpg" alt="5" height="100" width="100">
</td>
<td id="cell24">
<img src="box-kitties/13.jpg" alt="13" height="100" width="100">
</td>
</tr>
<tr>
<td id="cell31">
<img src="box-kitties/08.jpg" alt="8" height="100" width="100">
</td>
<td id="cell32">
<img src="box-kitties/10.jpg" alt="10" height="100" width="100">
</td>
<td id="cell33">
<img src="images/empty.jpg" alt="empty" height="100" width="100">
</td>
<td id="cell34">
<img src="box-kitties/15.jpg" alt="15" height="100" width="100">
</td>
</tr>
<tr>
<td id="cell41">
<img src="box-kitties/04.jpg" alt="4" height="100" width="100">
</td>
<td id="cell42">
<img src="box-kitties/02.jpg" alt="2" height="100" width="100">
</td>
<td id="cell43">
<img src="box-kitties/09.jpg" alt="9" height="100" width="100">
</td>
<td id="cell44">
<img src="box-kitties/03.jpg" alt="3" height="100" width="100">
</td>
</tr>
</table>
</div>
</div>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="puzzle.js" type="text/javascript"></script>
</body>
</html>