-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.6 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Cryptoquote</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Cryptoquote Maker</h1>
<h3>Create a Puzzle:</h3>
<form id="puzzle-form">
<label for="puzzle-solutiion">Enter Text Here:</label>
<input type="text" name="description" id="puzzle-solutiion">
<input type="submit" id="submit-puzzle" value="Create Puzzle">
</form><br><br>
<h3>Choose a Random Puzzle:</h3>
<form id="random-puzzle">
<label for="random-puzzle">Choose Difficulty</label>
<select name="difficulty" id="puzzle-difficulty"><br><br>
<option value="1" id="easy">Easy</option>
<option value="2" id="medium">Medium</option>
<option value="3" id="hard">Hard</option>
<option value="4" id="expert">Expert</option>
</select>
<input id="random-puzzle-submit" type="submit" value="Generate Random Puzzle" >
</form>
<br><br>
<h4 id="interactive-puzzle">
</h4>
<div class="interact-area" id="interact-area">
</div>
<br><br>
<div class="check-puzzle" id="check-puzzle">
<input id="check-puzzle" type="submit" value="Check Puzzle" >
</div>
<br>
<div class="result-area" id="result-area">
</div>
<script src="src/randomPuzzle.js" type="text/javascript" defer></script>
<script src="index.js" type="text/javascript" defer></script>
</body>
</html>