-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.php
98 lines (88 loc) · 3.8 KB
/
dashboard.php
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="main">
<header class="header" style="background-color: seagreen">
<a href="#" class="logo">Quiz</a>
<nav class="navbar">
<a href="#" class="active">Home</a>
<a href="#">About</a>
<a href="feedback.php">Feedback</a>
<a href="logout.php">Logout</a>
</nav>
</header>
<div class="container">
<section class="quiz-section">
<div class="quiz-box">
<h1>FLUXUS Quiz</h1>
<div class="quiz-header">
<span>Quiz Website Tutorial</span>
<span class="header-score">Score: 0 / 5</span>
</div>
<h2 class="question-text">What does HTML stands for?</h2>
<div class="option-list">
<!-- <div class="option">
<span>A. Hyper Text Markup Language</span>
</div>
<div class="option">
<span>B. Hyper Text Multi Language</span>
</div>
<div class="option">
<span>C. Hyper Text Multiple Language</span>
</div>
<div class="option">
<span>D. Home Text Multi Language</span>
</div> -->
</div>
<div class="quiz-footer">
<span class="question-total">1 of 5 Questions</span>
<button class="next-btn">Next</button>
</div>
</div>
<div class="result-box">
<h2>Quiz Result!</h2>
<div class="percentage-container">
<div class="circular-progress">
<span class="progress-value">0%</span>
</div>
<span class="score-text">Your Score 0 out of 5</span>
</div>
<div class="buttons">
<button class="TryAgain-btn">Try Again</button>
<button class="goHome-btn">Go To Home</button>
</div>
</div>
</section>
<section class="home" class="home" style="background: url('bg.jpg') no-repeat">
<div class="home-content">
<h1>Quiz Website</h1>
<p>Online quiz maker is a modern-day tool that has been </br>smartly
designed to meet all the basic as well as
advanced</br> requirements of creating a quiz.</p>
<button class="start-btn">Start Quiz</button>
</div>
</section>
</div>
</main>
<div class="popup-info">
<h2>Quiz Guide</h2>
<span class="info">1. Welcome to the quiz! Read each question carefully.</span>
<span class="info">2. Let's quiz! Read, pick, and enjoy!"</span>
<span class="info">3. Choose the best answer by clicking or selecting it.</span>
<span class="info">4. Take your time, there's no rush. .</span>
<span class="info">5. Enjoy the quiz and have fun!</span>
<div class="btn-group">
<button class="info-btn exit-btn">Exit Quiz</button>
<a href="#" class="info-btn continue-btn">Continue</a>
</div>
</div>
<script src="questions.js"></script>
<script src="script.js"></script>
</body>
</html>