-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.21 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
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Math Quiz - Welcome</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<!-- Loader -->
<div id="loader">
<div class="loader"></div>
</div>
<div class="container">
<h1>[ SCHOOL NAME ]</h1>
<h2>Welcome to the Math Quiz!</h2>
<div class="rules">
<h3>Rules:</h3>
<ul>
<li>There are <strong>4 rounds</strong> in total.</li>
<li>Each round has <strong>10 questions</strong>.</li>
<li>Each Question Contains <strong>2 Marks</strong>.</li>
<li>Time limits vary for each round to make it exciting!</li>
</ul>
</div>
<a href="start-page/round-1-start.html" class="start-btn">Start Quiz</a>
<div class="conducted-by">
<p>Conducted by: [Name]</p>
</div>
</div>
<footer class="footer">
<p>
Designed with ❤️ by
<a href="https://tejasmali.web.app" target="_blank">Tejas Mali</a>
</p>
</footer>
<script src="/js/script.js"></script>
</body>
</html>