forked from JoshuaNwaizu/quiz-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (50 loc) · 2.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== REMIX ICONS ===============-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="styles.css">
<title>Quiz App</title>
</head>
<body>
<main class="main section" id="main">
<header class="header">
<nav class="nav container">
<div class="nav__logo">
<h1>FE-quiz</h1>
</div>
<div class="toggle__icons container">
<i class="ri-sun-line sun"></i>
<div class="toggle__box left" id="toggle-box">
<div class="toggle__circle"></div>
</div>
<i class="ri-moon-line moon"></i>
</div>
</nav>
</header>
<section class="section grid html-home">
<div class="home__container container">
<div class="home__hero">
<span id="show-text" class="show__text">
<b>NOTE</b> : You can only control Dark and Light mode from this page.</span>
<h1 class="home__title">Welcome to the <span>Frontend Quiz</span></h1>
<p class="home__description">
Unlock the secrets of frontend skill in our quick quiz!
Test your HTML, CSS, JavaScript and React prowess,
and level up your skills with each question.</p>
</div>
<div class="home__options">
<div class="option__list">
<span><i class="ri-html5-line"></i></span>
<p class="option__text html">Start Quiz</p>
</div>
</div>
</div>
</section>
</main>
<script type="module" src="index.js"></script>
</body>
</html>