-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 817 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 817 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quiz App Documentation</title>
<link rel="stylesheet" href="style.css" />
<style></style>
</head>
<body>
<header id="app-header"><h1>Quiz App</h1></header>
<main id="app-main">
<div id="quiz-content">
<div id="quiz-question"></div>
<div id="quiz-option"></div>
<div id="quiz-submit">
<button id="next" disabled>Next >></button>
<button id="start" class="start">start</button>
</div>
</div>
</main>
<footer id="app-footer">
<span id="countdown">Time Remaining <b id="time"></b></span>
</footer>
<script src="script.js" defer></script>
</body>
</html>