-
Notifications
You must be signed in to change notification settings - Fork 0
/
puzzlegame.html
67 lines (48 loc) · 1.77 KB
/
puzzlegame.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
<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.0">
<title>Slider Puzzle</title>
<link rel="stylesheet" href="puzzlegame.css">
<script src="puzzlegame.js"> </script>
</head>
<body>
<img id="title" src="logo.jpeg">
<!-- <div class="parent"> -->
<div style="float: left; width: 1%" id="original-image">
<figure>
<img src="10.jpg" alt="" width="200" height="200"/>
<figcaption> Treasure! </figcaption>
</figure>
</div>
<div id="timer">00:00:00</div>
<button onclick="startTimer()">Start</button>
<button onclick="stopTimer()">Stop</button>
<div class="restart">
<a href="puzzlegame.html">TRY AGAIN</a>
</div>
<div class="turns">
<h1> You took Turns: <span id="turns"> 0 </span> </span></h1>
<h3> Click on Stop when Treasure Chest is Found </h3>
</div>
<!-- <div class="restart">
<a href="file:///C:/elitmus/puzzle%20game/puzzlegame.html"></a>
</div> -->
<!-- <img src="C:\puzzle game\10.jpg" alt=""/> -->
<!-- <div style="text-align: center ;"><img src="C:\puzzle game\10.jpg" width="100" alt="My Image" /></div> -->
<div id="board"></div>
</div>
<!-- <h1> Turns: <span id="turns"> 0 </span> </span></h1> -->
<div class="home">
<a href="home.html"> EXIT GAME </a>
<!-- <button id="home">HOME</button> -->
</div>
<div class="level">
<a href="index.html">RESTART FROM LEVEL 1</a>
<!-- <button id="home">HOME</button> -->
</div>
<div id="showScore" class="scoreArea"></div>
<div id = "showScore" class="scoreArea"> </div>
</body>
</html>