-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (41 loc) · 1.19 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
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This is where your description goes">
<meta name="keywords" content="one, two, three">
<title>Know It All</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Know It All</h1>
<section class="userInput">
<section>
<button type="button" name="button" class="genQuest">Generate Question!</button>
</section>
<section class="dropDown">
<select class="difficulty">
<option value="easy">Easy</option>
<option value="medium">Medium</option>
<option value="hard">Hard</option>
</select>
</section>
</section>
<section class="display">
<h2>Question:</h2>
<p class="question"></p>
<h2>Choices:</h2>
<p class="choices"></p>
</section>
<section class="finalResult">
<h2 class="result"></h2>
<p class="answer"></p>
</section>
<section>
<button type="submit" class="submit">Submit</button>
</section>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>