-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (27 loc) · 919 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
28
29
30
31
32
33
<!doctype html>
<html>
<head>
<title>Sliding Puzzle</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name="viewport" content="initial-scale=1.0, width=device-width">
</head>
<body>
<figure class="sliding-puzzle-figure">
<ul class="sliding-puzzle">
<li class="tile">1</li>
<li class="tile">2</li>
<li class="tile">3</li>
<li class="tile">4</li>
<li class="tile">5</li>
<li class="tile">6</li>
<li class="tile">7</li>
<li class="tile">8</li>
</ul>
<figcaption>
A Sliding Puzzle | <a id="shuffle">Shuffle</a> | <a id="solve">Solve</a>
</figcaption>
</figure>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>