-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
37 lines (37 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Adarsh Srivastava">
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> -->
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Quiz App</title>
</head>
<body>
<div class="main__container">
<!-- <div class="row"> -->
<div class="left__side">
<div class="left__main--heading">PYTHON</div>
<div class="left__sub--heading">Take this amazing Python Quiz</div>
</div>
<div class="right__side">
<div class="quiz__heading">Quiz</div>
<div class="quiz__description">
Please answer the Trivia Quiz below. You will be
headed towards
to solve next question
only if you solve this question correctly. For each correct
answer you will be awarded 5 Marks.
</div>
<div class="quiz__question" id="quiz__question"></div>
<div class="quiz__option__1" id="quiz__option__1"></div>
<div class="quiz__option__2" id="quiz__option__2"></div>
<div class="quiz__option__3" id="quiz__option__3"></div>
<div class="quiz__option__4" id="quiz__option__4"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>