-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 1.09 KB
/
index.html
File metadata and controls
30 lines (29 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>کوییز حرفهای</title>
<link href="https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="quiz-container">
<h1 class="quiz-title">کوییز برنامهنویسی</h1>
<div class="quiz-box">
<div id="quiz-question" class="question">سوال بارگذاری میشود...</div>
<ul id="quiz-options" class="options"></ul>
<div class="quiz-footer">
<div id="timer" class="timer">زمان: 20</div>
<button id="next-btn" class="next-btn">سوال بعدی</button>
</div>
</div>
<div id="result-box" class="result-box hidden">
<h2>پایان آزمون</h2>
<p id="score-text">نمره شما: ...</p>
<button onclick="location.reload()" class="restart-btn">شروع مجدد</button>
</div>
</div>
<script src="js.js"></script>
</body>
</html>