-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
79 lines (79 loc) · 2.7 KB
/
Copy pathindex3.html
File metadata and controls
79 lines (79 loc) · 2.7 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Обо мне</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Comfortaa:wght@300..700&family=Kode+Mono:wght@400..700&family=Shantell+Sans:ital,wght@0,300..800;1,300..800&display=swap");
body {
background-color: #c3dfe0;
}
.title {
text-align: center;
font-family: "Amatic SC", sans-serif;
}
.icom {
width: 150px;
height: 150px;
margin-top: 10px;
}
.container1,
.container2 {
display: flex;
align-content: stretch;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.block {
display: flex;
width: 200px;
height: 250px;
margin: 10px;
border: 5px solid;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 10px;
background-color: #9dad6f;
cursor: pointer;
}
.block:hover {
background-color: #778353;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Обо мне</h1>
<div class="container1">
<div class="block">
<imgc lass="icon" src="фото меня.png" alt="фото лица" />
<h3 class="title">Меня зовут Тимур мне 12 лет</h3>
</div>
<div class="block">
<img class="icon" src="геймпад.png" alt="геймпад" />
<h3 class="title">Видеоигры - мой способ отдыха и развлечения.</h3>
</div>
<div class="block">
<img class="icon" src="music off.png" alt="перечёркнутая нота" />
<h3 class="title">Музыка не цепляет меня, предпочитаю тишину.</h3>
</div>
</div>
<div class="container2">
<div class="block">
<img class="icon" src="кодинг.png" alt="кодинг" />
<h3>Освоил несколько языков программирования!</h3>
</div>
<div class="block">
<img class="icon" src="кодинг.png" alt="кодинг" />
<h3>Программирование - мое любимое хобби!</h3>
</div>
<div class="block">
<img class="icon" src="game create.png" alt="создание игры" />
<h3 class="title">Мечтаю создать свою видеоигру.</h3>
</div>
</div>
</body>
</html>