-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanton.html
More file actions
110 lines (96 loc) · 2.84 KB
/
anton.html
File metadata and controls
110 lines (96 loc) · 2.84 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What I am proud of</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f7ff; /* Білий-синій відтінок */
color: #333;
}
header {
background-color: #007bff; /* Синій колір */
color: #fff;
padding: 20px;
text-align: center;
}
main {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #007bff; /* Синій колір */
border-bottom: 2px solid #007bff; /* Синя лінія */
padding-bottom: 10px;
}
p {
line-height: 1.6;
}
footer {
text-align: center;
padding: 10px;
background-color: #007bff; /* Синій колір */
color: #fff;
position: fixed;
bottom: 0;
width: 100%;
}
section {
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #ddd;
background-color: #fff; /* Білий колір */
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
padding: 5px 0;
}
</style>
</head>
<body>
<header>
<h1>What I am proud of</h1>
</header>
<main>
<section id="achievements">
<h2>What I am proud of</h2>
<ul>
<li>At the age of 14, I received a certificate of knowledge of the French language at the B1 level</li>
<li>At the age of 15, I received 1 adult category in swimming</li>
<li>At the age of 26, I walked the entire Isle of Oleron in the west of France. The distance was approximately 60 kilometers.</li>
</ul>
</section>
<section id="future-goals">
<h2>My future goals</h2>
<p>With a restless spirit, I am always looking to expand my knowledge and skills. My future goals include:</p>
<ul>
<li>Ascent to Mont Blanc</li>
<li>Learn German to a very high level.</li>
</ul>
</section>
<section id="How to Stay humble">
<h2>How to Stay humble
<ul>
<li>IDK</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 it's a footer and there's a bunch of important information (no)</p>
</footer>
</body>
</html>