-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple_quiz.html
More file actions
28 lines (25 loc) · 1.07 KB
/
Copy pathsimple_quiz.html
File metadata and controls
28 lines (25 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homework</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="mini-games.css">
</head>
<body>
<div class="simple-quiz center">
<h1 class="simple-quiz__title">Викторина</h1>
<div id="quiz-container"></div>
<div class="simple-quiz__buttons">
<button class="simple-quiz__button" id="submit-btn">Проверить ответы</button>
<button class="simple-quiz__button" id="restart-btn">Начать заново</button>
</div>
<div id="result"></div>
<a class="simple-quiz__link" href="index.html">На главную</a>
</div>
<script src="simple_quiz.js"></script>
</body>
</html>