-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (72 loc) · 3.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>An English Test</title>
<link rel="icon" type="image/x-icon" href="static/images/favicon.png">
<link rel="stylesheet" href="static/css/styles.css">
</head>
<body>
<main class="main">
<header class="header">
<a href="#" class="logo">An English Test</a>
<nav class="navbar">
<a href="https://github.com/SahandSoleimani/englishtest">GitHub</a>
</nav>
</header>
<div class="container">
<section class="quiz-section">
<div class="quiz-box">
<h1>English Test</h1>
<div class="quiz-header">
<span>Questions</span>
<span class="header-score">Score: 0 / 5</span>
</div>
<h2 class="question-text"></h2>
<div class="option-list">
</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>Your Test 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">
<form method="POST">
<button type="submit">Resources</button>
</form>
<button class="goHome-btn">Go Back</button>
</div>
</div>
</section>
<section class="home">
<div class="home-content">
<h1>English Test</h1>
<p>This test is designed to gauge your level of proficiency in English!</p>
<button class="start-btn">Start Test</button>
</div>
</section>
</div>
</main>
<div class="popup-info">
<h2>Test Guide</h2>
<span class="info">You cannot change your answers</span><br>
<span class="info">You cannot go back to the previous questions</span><br>
<span class="info">There is no time limit for any of the questions.</span><br>
<span class="info">Good luck, have fun! :D</span><br>
<div class="btn-group">
<button class="info-btn exit-btn">Exit Test</button>
<a href="#" class="info-btn continue-btn">Continue</a>
</div>
</div>
<script src="static/js/script.js"></script>
<script src="static/js/questions.js"></script>
</body>
</html>