-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 1.05 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog o jednorożcach</title>
</head>
<style>
body{
background-color: aquamarine;
}
p {
text-decoration-line: overline;
}
</style>
<body>
<h1>Blog o tęczy </h1>
<section class="słowenia">
<h2>tydzien 1 - Słowenia</h2>
<img src="https://cdn.pixabay.com/photo/2017/01/19/23/46/church-1993645_960_720.jpg" alt="zdjęcie Słoweni">
</section>
<section class="chorwacja">
<h2> tydzien 2 - Chorwacja</h2>
<img src="https://cdn.pixabay.com/photo/2014/11/01/18/46/dubrovnik-512798_960_720.jpg" alt="zdjęcie Chorwacji">
</section>
<a href="https://pl.wikipedia.org/wiki/P%C3%B3%C5%82wysep_Ba%C5%82ka%C5%84ski">Czytaj o bałkanach</a>
<footer>
<p>projekt WSB 2022</p>
<p>Autor: Jednorożec Angel</p>
</footer>
</body>
</html>