-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wheel of Fortune</title>
<link rel="stylesheet" href="style.css">
<script src="data.js"></script>
<script src="script.js"></script>
</head>
<body>
<h1>Wheel of Fortune</h1>
<div>
<div id="game-controls">
<select id="category-dropdown"></select>
<div id="phrase-input-container">
<label for="phrase-input">Enter a phrase: </label>
<input type="text" id="phrase-input">
</div>
<button id="startbutton" onclick="startGame()">Start Game</button>
</div>
</div>
<div id="phrase-container"></div>
<div id="alphabet-container"></div>
<!--
<div id="input-container">
<label for="letter-input">Guess a letter: </label>
<input type="text" id="letter-input" maxlength="1">
<button onclick="guessLetter()">Submit</button>
</div> -->
<button id="finish-btn" onclick="revealPhrase()">Finish</button>
<div id="discarded-letters">Discarded Letters: </div>
</body>
</html>