-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
45 lines (45 loc) · 1.28 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
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Merida Велосипеди</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background: #f4f4f4;
color: #333;
text-align: center;
padding: 50px;
}
header {
background-color: #008cba;
color: white;
padding: 20px;
}
h1 {
margin: 0;
}
section {
margin-top: 30px;
}
footer {
margin-top: 50px;
color: #777;
}
</style>
</head>
<body>
<header>
<h1>Merida – Якісні велосипеди</h1>
</header>
<section>
<h2>Ласкаво просимо!</h2>
<p>На цьому сайті ви знайдете інформацію про гірські, шосейні та міські велосипеди від Merida.</p>
<p>Merida — це поєднання якості, надійності та стилю 🚴♀️</p>
</section>
<footer>
© 2025 Merida Bikes | Створено студентом SoftServe Academy
</footer>
</body>
</html>