-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
68 lines (53 loc) · 1.37 KB
/
quiz.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width" />
<title>Quiz</title>
<link rel="stylesheet" href="./main.css" />
</head>
<body class="second">
<p class="quiz" id="quiz">
<div class="counter" id="counter">
1/10
</div>
<div class="quiz-header" id="header">
Завантажуємо питання...
</div>
<ul class="quiz-list" id="list">
<li>
<button id="" value="" onclick="checkButton(this)">Відповідь</button>
</li>
</ul>
<div id="button-next-page">
<button class="quiz-submit submit" id="submit">ПРОДОВЖИТИ ТЕСТ</button>
</div>
<div id="interesting">
<div class="interesting-info">ЦІКАВО</div>
</div>
<div id="interesting-text">
<div class="interesting-info text">
Щось цікаве
</div>
</div>
<div id="user-info">
<p id="user-image">
<img src="photo.png" class="ant-image-mask" alt="Usare image">
</p>
<div class="user-name">
User name
</div>
<div class="user-position">
User position
</div>
<div class="commentary">
Commentaries
</div>
</div>
<a href="https://cedem.org.ua/" target="_blank">
<img alt="ЦЕДЕМ" src="logo.png" class="image-main-2">
</a>
<script src="./main.js"></script>
</body>
</html>