-
Notifications
You must be signed in to change notification settings - Fork 0
/
stronka.html
51 lines (48 loc) · 1.95 KB
/
stronka.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adoptuj Zwierzaka</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="baner">
<h1>Adoptuj Zwierzaka</h1>
<p>Znajdź swojego nowego najlepszego przyjaciela!</p>
</div>
</header>
<main>
<section class="galeria">
<h2>Dostępne Zwierzęta</h2>
<div class="siatka-zwierzat">
<div class="karta-zwierzecia" id="zwierze1">
<img src="Png.png" alt="Pies">
<h3>pies</h3>
<p>Rasa: Labrador</p>
<button class="przycisk-adoptuj" onclick="adoptujZwierzaka('pies')">Adoptuj</button>
</div>
<div class="karta-zwierzecia" id="zwierze2">
<img src="kot.jpg" alt="Kot">
<h3>lysy</h3>
<p>Rasa: lysy</p>
<button class="przycisk-adoptuj" onclick="adoptujZwierzaka('lysy')">Adoptuj</button>
</div>
<div class="karta-zwierzecia" id="zwierze3">
<img src="scur.jpg" alt="Królik">
<h3>ryszard</h3>
<p>Rasa: scur</p>
<button class="przycisk-adoptuj" onclick="adoptujZwierzaka('ryszard')">Adoptuj</button>
</div>
</div>
</section>
</main>
<footer>
<div class="stopka">
<p>© 3829 Adoptuj Zwierzaka. Wszystkie prawa zastrzeżone. nb</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>