-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="video-container">
<!-- Embed the YouTube video using an iframe -->
<iframe width="560" height="315" src="https://youtu.be/p0Lm0xWaKkw" frameborder="0" allowfullscreen></iframe>
</div>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2150529875627207"
crossorigin="anonymous"></script>
<button id="start-quiz">Start Quiz</button>
<div class="quiz-container" style="display: none;">
<!-- Quiz content goes here -->
<h1>Quiz Time!</h1>
<div id="question"></div>
<div id="options"></div>
<button id="submit">Submit</button>
<div id="result"></div>
</div>
<!-- Include the questions.js script before script.js -->
<script src="questions.js"></script>
<script src="script.js"></script>
</body>
</html>