-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (89 loc) · 2.77 KB
/
index.html
File metadata and controls
91 lines (89 loc) · 2.77 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
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>О себе - Алексей Целиков</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 0 auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
text-align: center;
padding: 20px 0;
background-color: #333;
color: #fff;
}
header h1 {
margin: 0;
}
.content {
display: flex;
flex-wrap: wrap;
margin-top: 20px;
}
.content .block {
flex: 1 1 45%;
margin: 10px;
padding: 20px;
background-color: #f9f9f9;
border: 1px solid #ddd;
box-sizing: border-box;
}
.content .block h2 {
margin-top: 0;
}
footer {
text-align: center;
padding: 20px 0;
background-color: #333;
color: #fff;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Алексей Целиков</h1>
<p>Личный сайт</p>
</header>
<div class="container">
<div class="content">
<div class="block">
<h2>О себе</h2>
<p>Привет! Меня зовут Алексей Целиков. На этом сайте я расскажу о своих интересах и достижениях.</p>
</div>
<div class="block">
<h2>Мои интересы</h2>
<ul>
<li>Обезьяны</li>
<li>Бананы</li>
<li>Буковки</li>
<li>Игры про автоматизацию</li>
</ul>
</div>
<div class="block">
<h2>Мои достижения</h2>
<p>Завод в Factorio.</p>
</div>
<div class="block">
<h2>Контакты</h2>
<p>Вы можете связаться со мной через электронную почту: <a href="mailto:kokter@example.com">kokter@example.com</a></p>
</div>
</div>
</div>
<footer>
<p>© 2025 Banani. Все права защищены.</p>
</footer>
</body>
</html>