-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>8 Puzzle</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="welcome">
<div id="title">
8 Puzzle
</div>
<div id="info">
<p>CTIS - Web Technologies 1<br/>PROJECT<br/>Fall 2018</p>
</div>
<div class="button">
START
</div>
</div>
<div id="choose" >
<div id="select">
Select an Image
</div>
<div id="images">
<img src="img/1.jpg" >
<img src="img/2.jpg" >
<img src="img/3.jpg" >
</div>
<div class="button" style="display:none">
Continue
</div>
</div>
<div id="game" style="display:none">
</div>
<div id="shuffle" style="display:none">
<span>Shuffle</span>
<select>
<option value="0">-- Shuffle Amount --</option>
<option value="3">3 Moves</option>
<option value="30">30 Moves</option>
</select>
<div class="button" style="display:none">
Select
</div>
</div>
<div id="solve" style="display:none">SOLVE THE PUZZLE NOW</div>
<div id="restart" style="display:none">F5 to restart</div>
<div id="end" style="display:none">Congratulations!</div>
</body>
</html>