-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (64 loc) · 3.23 KB
/
index.html
File metadata and controls
65 lines (64 loc) · 3.23 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
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maket</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=Montserrat:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="top center">
<header class="header">
<h1 class="header__title">Добро пожаловать на мой сайт !</h1>
<p class="header__text">Вам предстоит пройти несколько увлекательных игр. Если готов нажимай <span class="white_color">поехали </span> и <span class="white_color">приступай</span></p>
<a class="header__link" href="#link">Поехали!</a>
</header>
</div>
<div class="main center">
<section id="link" class="list_of_games main__list_of_games">
<div class="game">
<div class="game__content">
<a href="#first-game"><img class="game__img" src="img/Rectangle 6.jpg" alt="picture"></a>
<p class="game__text">Игра 1</p>
</div>
</div>
<div class="game">
<div class="game__content">
<a href="#second-game"><img class="game__img" src="img/Rectangle 7.jpg" alt="picture"></a>
<p class="game__text">Игра 2</p>
</div>
</div>
<div class="game">
<div class="game__content">
<a href="#"><img class="game__img" src="img/Rectangle 8.jpg" alt="picture"></a>
<p class="game__text">Игра 3</p>
</div>
</div>
</section>
<section class="about_game main__about_game" id="first-game">
<div class="about_game__left">
<h2 class="about_game__title">Времена года!</h2>
<p class="about_game__text">Нажмите кнопку играть, введите номер месяца (от 1 до 12) и вы узнаете к какому времени года он относится</p>
<button class="about_game__button" onclick="getMonths()">Играть!</button>
</div>
<div class="about_game__right">
<img class="about_game__img" src="img/undraw_video_game_night.svg" alt="Game_picture">
</div>
</section>
<section class="about_game main__about_game main__about_game_reverse" id="second-game">
<div class="about_game__left">
<h2 class="about_game__title">Запомни слова</h2>
<p class="about_game__text">При нажатии на кнопку играть, вы увидите несколько слов, которые вам необходимо запомнить.</p>
<button class="about_game__button" onclick="rememberWords()">Играть!</button>
</div>
<div class="about_game__right">
<img class="about_game__img" src="img/undraw_gaming.svg" alt="Game_picture">
</div>
</section>
</div>
<script src="script/script.js"></script>
</body>
</html>