-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (61 loc) · 2.56 KB
/
index.html
File metadata and controls
62 lines (61 loc) · 2.56 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://kirillprogrammertop1gg.github.io/normalize/index.min.css">
<link rel="stylesheet" href="./styles/main.min.css">
<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=Comfortaa:wght@300;500;600&display=swap" rel="stylesheet">
<title>MicroTests</title>
<meta name="MicroTests">
</head>
<body>
<header class="header">
<img class="header__logo" src="./imgs/logo.png" height="70" alt="Logo">
</header>
<main class="main">
<section class="materials" style="opacity: 1;">
<h2 class="materials__title">Матеріали по тестам:</h2>
</section>
<section class="tests" style="opacity: 1;">
<h2 class="tests__title">Оберіть свій тест</h2>
<ul class="cards">
<li class="cards__item">
<h3 class="cards__title">d</h3>
<p class="cards__data"></p>
<button class="cards__button" testnum="0">1</button>
</li>
<li class="cards__item">
<h3 class="cards__title"></h3>
<p class="cards__data"></p>
<button class="cards__button" testnum="1">2</button>
</li>
<li class="cards__item">
<h3 class="cards__title"></h3>
<p class="cards__data"></p>
<button class="cards__button" testnum="2">3</button>
</li>
</ul>
</section>
<section class="test" style="opacity: 1;">
<p class="test_stopwatch" testprogress='0'></p>
<p class="test__answerNum"></p>
<p class="test__question"></p>
<input type="text" class="test__input">
<button class="test__check">Check</button>
<p class="test__isCorrect"></p>
<button class="test__next">Next</button>
</section>
<section class="results" style="opacity: 1;">
<p class="results__result">results</p>
</section>
</main>
<footer class="footer">
© 2023 MicroTests. Усі права захищені.
</footer>
<script type="module" src="./index.js"></script>
<script type="module" src="./stopwatch.js"></script>
</body>
</html>