-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 869 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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<meta http-equiv="Permissions-Policy" content="autoplay=self">
<link rel='stylesheet' href="css/puzzle.css">
<style>
</style>
</head>
<body>
<div class="topPuzContainer">
<div id="puzzleContainer">
<div id="puzzleBody">
</div>
<div id="puzzleNav">
</div>
<div id="puzzleMenu">
<div id="puzTitle" class="puzTitle">Title placeholder</div>
<div id="hamburger" class="hamburger">
<img src="images/menus.png" />
</div>
</div>
<div id="puzzleClues">
</div>
<div id="puzzleKeyboard">
</div>
</div>
</div>
<script src="js/puzzle.js"></script>
<script>
puzzle.getCurrentPuzzle(document.querySelector(".topPuzContainer"));
</script>
</body>
</html>