-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhobby.html
More file actions
40 lines (40 loc) · 1.6 KB
/
hobby.html
File metadata and controls
40 lines (40 loc) · 1.6 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Мои хобби</title>
<link rel="stylesheet" type="text/css" href="styles_hobby.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=Pixelify+Sans&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Мои хобби</h1>
</header>
<div class="content">
<h2>Мои хобби</h2>
<div class="hobbies-container">
<div class="hobby">
<img src="hobby1.jpg" alt="Хобби 1">
<h3>Хобби 1</h3>
<p>Сборка 3D моделей известных достопримечательностей мира</p>
</div>
<div class="hobby">
<img src="hobby2.jpg" alt="Хобби 2">
<h3>Хобби 2</h3>
<p>Увлечение виртуальной реальностью.</p>
</div>
<div class="hobby">
<img src="hobby3.jpg" alt="Хобби 3">
<h3>Хобби 3</h3>
<p>Прохождение игр только на максимальном уровне сложности.</p>
</div>
</div>
<div class="navigation-buttons">
<a href="about_me.html" class="button">Перейти ко мне</a>
<a href="resume.html" class="button">Перейти к резюме</a>
</div>
</div>
</body>
</html>