-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 918 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Quiz App</title>
</head>
<body>
<div class="quiz-container">
<h1>🧪 Quiz App 🧪</h1>
<div id="progress-indicator" class="progress"></div>
<div class="question">
<p id="question-text">Question goes here...</p>
<ul id="options" class="options-list"></ul>
</div>
<div class="result">
<p id="result-text"></p>
</div>
</div>
<!-- ... (Previous HTML code) -->
<div class="celebration" id="celebration">
<img src="https://usagif.com/wp-content/uploads/gify/clap-1-slow-sarcastic-applause-usagif.gif.webp" alt="Celebration" class="confetti-img">
</div>
<script src="script.js"></script>
</body>
</html>