-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (57 loc) · 2.84 KB
/
index.html
File metadata and controls
65 lines (57 loc) · 2.84 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quiz Workshop</title>
<link rel="stylesheet" href="./css style/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Electrolize&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="stylesheet" href="./css style/style.css">
<title>Document</title>
</head>
<main class=" d-flex justify-content-center align-items-center flex-column min-vh-100 bg-black overflow-hidden">
<section class="heading position-relative overflow-hidden p-2 mb-5 rounded-2 text-center ">
<h1 class="p-3 bg-white">quiz app</h1>
</section>
<section class="container">
<div class="row">
<form
class=" start-quiz col-lg-8 offset-lg-2 d-flex flex-column gap-3 animate__animated animate__bounceInDown"
id="quizQuestions">
<div class="form-floating">
<select class="form-select" name="selected" id="categoryMenu">
<option selected value="">Any Category</option>
<option value="9">General Knowledge</option>
<option value="27">Animals</option>
<option value="19">Science: Mathematics</option>
<option value="18">Science: Computers</option>
<option value="22">Geography</option>
</select>
<label for="categoryMenu"> choos category</label>
</div>
<div class="form-floating">
<select class="form-select" id="difficultyOptions" aria-label="difficulty Select">
<option selected value="easy">Easy</option>
<option value="medium">Medium</option>
<option value="hard">Hard</option>
</select>
<label for="difficultyOptions">Choose Difficulty Level</label>
</div>
<div class="form-floating">
<input type="number" class="form-control" id="questionsNumber" placeholder="Number of Questions" />
<label for="QuestionsNumber">Number of Questions</label>
</div>
<button type="button" class="btn btn-start btn-primary rounded-pill" id="startQuiz"> Start</button>
</form>
<div id="questionsContainer">
</div>
</div>
</section>
</main>
<body>
<script src="./js/main.js" type="module"></script>
</body>
</html>