-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.html
78 lines (77 loc) · 3.88 KB
/
start.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
69
70
71
72
73
74
75
76
77
78
<!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, initial-scale=1.0">
<title>Початок гри Legacy of Sothorys</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=Inter:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/styles/style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
</head>
<link rel="shortcut icon" href="/images/web.ico" type="image/x-icon">
<body>
<header>
<div class="header">
<a href="index.html" class="header__logo"><img src="/images/Logo.png" alt="Logo"></a>
<nav>
<ul class="nav">
<li class="nav__item">
<a href="info.html" class="nav__link">Кодекс</a>
</li>
<li class="nav__item">
<a href="news.html" class="nav__link">Новини</a>
</li>
<li class="nav__item">
<a href="#" class="nav__link">Форум</a>
</li>
<li class="nav__item">
<a href="log.html" class="nav__link">Особистий кабінет</a>
</li>
</ul>
</nav>
<div class="navbar-toggle">☰</div>
</div>
</header>
<section class="start">
<h2 class="start__title">Початок гри</h2>
<div class="step">
<div class="step__first">
<img class="step__first__img" src="/images/firststep.png" alt="first">
<h3 class="step__first__title">Реєстрація</h3>
<p class="step__first__text">Насамперед, за традицією, давайте ознайомимося з правилами проекту та пройдемо реєстрацію.</p>
<a href="#" class="step__first__rools">Прочитати правила</a>
<a href="reg.html" class="step__first__registration">Пройти реєстрацію</a>
</div>
<div class="step__two">
<img class="step__two__img" src="/images/twostep.png" alt="two">
<h3 class="step__two__title">Встановлення лаунчера</h3>
<p class="step__two__text">Далі, після ознайомлення з правилами та реєстрацією, давайте скачаємо ігровий клієнт.</p>
<a href="#" class="step__two__windows">
<span class="step__two__windows__text">Завантажити лаунчер</span>
<span class="step__two__windows__subtext">Windows</span>
</a>
<a href="#" class="step__two__linux">
<span class="step__two__windows__text">Завантажити лаунчер</span>
<span class="step__two__windows__subtext">Linux</span>
</a>
</div>
<div class="step__last">
<img class="step__last__img" src="/images/laststep.png" alt="last">
<h3 class="step__last__title">Грати!</h3>
</div>
</div>
</section>
<script>
document.addEventListener('DOMContentLoaded', function () {
var navbarToggle = document.querySelector('.navbar-toggle');
var navbarMenu = document.querySelector('.nav');
navbarToggle.addEventListener('click', function () {
navbarMenu.classList.toggle('navbar-open');
});
});
</script>
</body>
</html>