-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css">
<title>Object Oriented Programming (OOP) With JavaScript</title>
<script defer src="script.js"></script>
<script defer src="three.js" type="module"></script>
</head>
<body>
<h1>Quiz Generator</h1>
<div class="three">
<p class="question"></p>
<button class="btn btn--random">Random</button>
<input class="answer"></input>
<button class="btn btn--submit">Submit</button>
</div>
<button class="quiz-create">Create a New Quiz</button>
<div class="quiz">
<p class="q-label">Quiz question</p>
<textarea class="quiz-input quiz-question"></textarea>
<p class="q-label">Quiz answer</p>
<textarea class="quiz-input quiz-answer"></textarea>
<button class="q-btn add-to-quiz">Add to Quiz</button>
<button class="q-btn complete-quiz">Submit Quiz</button>
<div class="feed">
<h1>heellllooooo</h1>
</div>
</div>
<div class="img"></div>
<div class="overlay hidden"></div>
</body>
</html>