-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgazelle jigsaw puzzle.html
45 lines (43 loc) · 1.63 KB
/
gazelle jigsaw puzzle.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
<!DOCTYPE html>
<html>
<head>
<title>Project OOW Endangered Animals</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="puzzle.css">
<script src="puzzle.js"></script>
</head>
<body>
<header> <!--this a good pratice to have header, main and footer so it becomes more readeable.-->
<div class="topnav">
<div class="wrapper">
<a href="homepage.html">Home</a>
<div class="subnav">
<button class="subnavbtn-active">Games</i></button>
<div class="subnav-content">
<a href="gamez.html">gazelle run</a>
<a>jigsaw puzzle</a>
<a href="quiz.html">gazelle quiz</a>
</div>
</div>
<a href="blogpage.html">BlogPage</a>
<a href="gallery.html">Gallery</a>
<a href="description.html">About</a>
</div>
</div>
<div class="wrapper">
<h1 class="h1-style">jigsaw puzzle</h1>
</div>
</header>
<main>
<div class="wrapper">
<br>
<div id="board"></div>
<h2>Turns: <span id="turns">0</span></h2>
<div id="pieces"></div>
</div>
</main>
<footer>
</footer>
</body>
</html>