-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
96 lines (96 loc) · 2.99 KB
/
about.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Проекты Владимира Дорошенко">
<title>О себе | Сайт-визитка Дорошенко В.</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 1em 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
nav {
margin: 1em 0;
}
nav a {
display: inline-block;
margin: 0 10px;
padding: 10px 20px;
background-color: #444;
color: #fff;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
box-shadow: 0 6px #222;
transition: all 0.2s ease;
}
nav a:hover {
background-color: #555;
}
nav a:active {
transform: translateY(6px);
box-shadow: 0 0 #222;
}
.content {
max-width: 800px;
margin: 2em auto;
padding: 1em;
background-color: #fff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
section {
margin-bottom: 2em;
}
section h2 {
border-bottom: 2px solid #333;
padding-bottom: 0.5em;
}
footer {
text-align: center;
padding: 1em 0;
background-color: #333;
color: #fff;
margin-top: 2em;
}
</style>
</head>
<body>
<header>
<h1>О себе</h1>
<nav>
<a href="index.html">На главную</a>
<a href="projects.html">Проекты</a>
<a href="contact.html">Контакты</a>
</nav>
</header>
<div class="content">
<section>
<h2>Достижения</h2>
<ul>
<li>Разработка Vr-лаборатории с химическими опытами для школ</li>
<li>Моделирование уникального дизайна шахмат, с дальнейшим изготовлением на 3D принтере</li>
<li>Администрирование Linux подобных серверов</li>
<li>Поддержка собственного серверного проекта</li>
<li>Разработка настольного приложения на Qt</li>
</ul>
</section>
</div>
<footer>
<p>© 2024 Дорошенко Владимир. Все права защищены.</p>
</footer>
</body>
</html>