-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.3 KB
/
index.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Айтилогия Quiz</title>
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header class="header">
<div class="container">
<div class="logo">
<img src="img/logo.png" alt="Логотип">
</div>
</div>
</header>
<section class="main">
<div class="container">
<div class="main-content">
<h1 class="tittle">Проверь свои знания JavaScript вместе с <span>АйтилогияQuiz</span>!</h1>
<div class="main-description">
Мы поможем подготовиться к контрольному заданию или тесту по JavaScript!
</div>
<div class="main-button">
<a href="form.html" class="button">Начать тест</a>
</div>
</div>
<div class="main-image">
<img src="img/main_image.png" alt="Картинка">
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="copyright">
«АйтилогияQuiz» © Все права защищены / 2022
</div>
</div>
</footer>
</body>
</html>