-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (42 loc) · 1.51 KB
/
index.html
File metadata and controls
51 lines (42 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Code Quiz App</title>
<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=Kablammo&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="title">Coding Quiz App</h1>
</header>
<!-- Start screen -->
<div id="start-screen" class="start-screen">
<h2>Welcome to the Quiz!</h2>
<button id="start-btn" class="start">Start Quiz</button>
</div>
<!-- Quiz screen -->
<div id="quiz-screen" class="hide">
<h2 id="question-text"></h2>
<ul id="choices-list"></ul>
<p id="feedback"></p>
<button id="next-btn" class="hide">Next</button>
</div>
<!-- Game over screen -->
<div id="game-over-screen" class="hide">
<h2>Quiz Complete!</h2>
<p>Your final score is: <span id="final-score"></span></p>
<form id="initials-form">
<label for="initials">Enter your initials:</label>
<input type="text" id="initials" maxlength="3" required>
<button type="submit">Submit</button>
</form>
</div>
<footer class="footer">
<p>© 2023 Quiz Coding App. By:<a href="https://www.linkedin.com/in/rodriguezm90">Michael Rodriguez</a> All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>