-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
49 lines (42 loc) · 1.46 KB
/
blog.html
File metadata and controls
49 lines (42 loc) · 1.46 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pstrągarnia</title>
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="css/lightbox.css">
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" href="CSS/blog.css">
<script src="https://cdn.jsdelivr.net/jquery/latest/jquery.min.js"></script>
<script src="js/lightbox.js"></script>
<script src="JS/cart.js"></script>
<script src="JS/blog.js"></script>
</head>
<body>
<nav>
<a href="index.html">Strona główna</a>
<a href="shop.html">Sklep</a>
<a href="blog.html">Blog</a>
<div class="dropdown">
<button class="dropbtn">Niezbędnik
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="fishing_grounds.html">Łowiska</a>
<a href="calendar.html">Kalendarz</a>
</div>
</div>
<a href="newsletter.html">Newsletter</a>
<a href="sources.html">Źródła</a>
<a href="cart.html">
<div id="cart_value"><i class="fas fa-shopping-cart"></i> (0zł)</div>
</a>
</nav>
<main></main>
<footer>
Autor strony: Adam Mazur
</footer>
</body>
</html>