-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchoice.html
45 lines (40 loc) · 1.24 KB
/
choice.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Регистрация</title>
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/choice.css">
</head>
<body>
<header class="header">
<div class="container">
<div class="logo">
<img src="img/logo.png" alt="Логотип">
</div>
</div>
</header>
<section class="choice">
<div class="container">
<div class="choice-content">
<h1 class="tittle">Выберите <span>тему теста</span></h1>
<div class="choice-description">Чтобы начать тест, выберите одну из предложенных ниже тем.</div>
<div class="choice-options" id="choice-options">
</div>
</div>
<div class="choice-image">
<img src="img/choice_image.png" alt="Картинка">
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="copyright">
«АйтилогияQuiz» © Все права защищены / 2022
</div>
</div>
</footer>
<script src="scripts/common.js"></script>
<script src="scripts/choice.js"></script>
</body>
</html>