-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (28 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Mystery Puzzle!</title>
</head>
<body>
<h1>Mystery Words Search Challenge</h1>
<h2 id = "instructions"></h2>
<h3 id = "themeIntro">The Theme is: <span id = "wordTheme"></span></h3>
<button id = "newGameButton" type = "button"> Try a New Theme</button>
<div id = "wordboard"></div>
<div id = "wordlist"></div>
<button id = "solveButton" type = "button">Mystery Words Reveal</button>
<link rel = "stylesheet" type="text/css" href = "css/mysterysearch.css">
<script src = https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js></script>
<script src = "js/mysterypaths.js"></script>
<script src = "js/mysterysearchcontroller.js"></script>
<script src = "js/mysterysearchlogic.js"></script>
<script src = "js/mysterysearchview.js"></script>
<script>
$(document).ready( function() {
new MysterySearchController("#wordboard", "#wordlist", "#solveButton", "#newGameButton", "#instructions",
"#wordTheme");
})
</script>
</body>
</html>