-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (80 loc) · 2.2 KB
/
index.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Обо мне - Avelc</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77aaff 3px solid;
}
header h1 {
text-align: center;
text-transform: uppercase;
margin: 0;
font-size: 24px;
}
#main {
padding: 20px;
background: #fff;
margin-top: 20px;
}
#main h2 {
color: #333;
}
ul {
list-style: none;
padding: 0;
}
ul li {
background: #77aaff;
color: #fff;
margin: 5px 0;
padding: 10px;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Привет, я Avelc (Avelcius)</h1>
</header>
<div class="container">
<section id="main">
<h2>Обо мне</h2>
<p>Меня зовут Avelc, или же Avelcius. Я начинающий программист, предпочитающий JavaScript. Живу в Екатеринбурге.</p>
<h2>Увлечения</h2>
<ul>
<li>Игры: Dota, Minecraft, Counter-Strike, Osu, Покемоны</li>
<li>Любимая сюжетная игра: OneShot</li>
<li>Аниме: любимый тайтл BNA</li>
<li><a href>projects.html</a></li>
</ul>
</section>
</div>
<footer>
<p>© 2025 Avelc. Все права защищены.</p>
</footer>
</body>
</html>