-
Notifications
You must be signed in to change notification settings - Fork 0
/
biszkopt.html
99 lines (97 loc) · 3.34 KB
/
biszkopt.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="pl">
<head>
<title>Dogs from Cygany</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link href="./main.css" rel="stylesheet" />
</head>
<body>
<div class="container p-3 my-3 bg-dark text-white rounded-4" style="max-width: 90%;">
<h1>Szczęśliwe Cygańskie psy</h1>
<p>
Wiejskie powietrze, pola, lasy- czy potrzeba czegoś więcej, by pomerdać
ogonkiem?
</p>
<div class="btn-group btn-group-sm">
<a href="./main.html" class="btn btn-outline-warning">Home</a>
<a href="./owca.html" class="btn btn-outline-warning">Owca</a>
<a href="./biszkopt.html" class="btn btn-outline-warning active"
>Biszkopt</a
>
<a href="./czekolada.html" class="btn btn-outline-warning">Czekolada</a>
<a href="./gallery.html" class="btn btn-outline-warning">Galeria</a>
</div>
</div>
<div class="card rounded-4 card-dog">
<img
class="card-img-top"
src="./images/bisquit-solo-squosh.jpg"
alt="Dog named: 'Biszkopt'"
/>
<div class="card-img-overlay">
<h4
class="title"
style="background-color: rgba(250, 235, 215, 0.3); display: inline"
>
<strong>BISZKOPT</strong>
</h4>
<p class="card-text" style="background-color: rgba(250, 235, 215, 0.3)">
<p class="glass"><strong
>Pies ciasteczko. Do schrupania. Wielki łasuch. Zjada wszystko, a
najchętniej ciastka. Stąd pewnie powiedzenie, że stajesz się tym co
jesz. Gustuje tez w dziczyźnie. Żaby, muchy, polne koniki, motyle,
ważki oraz zające. Na razie jeden. W wolnych chwilach leży na
plecach i trawi.
</strong></p>
</p>
</div>
</div>
<!-- <a href="./gallery.html" class="btn btn-primary dog-button"
>Biszkopt poleca galerię!</a
> -->
</body><br><br><br>
<footer>
<button
data-bs-toggle="collapse"
data-bs-target="#author"
class="btn btn-success"
>
Author
</button>
<div id="author" class="collapse">
<p>
Hi! If you enjoy my work
you may find me there:</p
>
<a href="https://www.linkedin.com/in/pskonieczny33/" target="_blank">
<i class="fa fa-linkedin-square" style="font-size: 48px"></i
></a>
<a href="https://github.com/bmalvo" target="_blank">
<i class="fa fa-github" style="font-size: 48px; color: rgb(19, 17, 17)">
</i
></a>
<a href="mailto:[email protected]"
><i
class="fa fa-envelope-square"
style="font-size: 48px; color: rgb(194, 194, 50)"
></i
></a>
<p>Or just buy me yummy coffee :)</p>
<a href="https://www.buymeacoffee.com/boydmalvoZ"
><i class="fa fa-coffee" style="font-size: 48px; color: brown"></i
></a>
</div>
<br />
<span>©bmalvo 2023</span>
</footer>
</html>