-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfarbs.html
80 lines (74 loc) · 2.66 KB
/
farbs.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!--<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<style>
.mySlides {display:none;}
</style>
</head>
<body>
<ul>
<li><a href="./index.html">NASZ PROJEKT</a></li>
<li><a href="./contact.html">Kontakt</a></li>
<li><a href="./about.html">O firmie</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Oferta</a>
<div class="dropdown-content">
<a href="#">Farby</a>
<a href="#">Środki do drewna</a>
<a href="#">Akcesoria malarskie</a>
</div>
</li>
<li><a href="./cart.html">Koszyk</a></li>
</div>
<li><a href="./login.html">Zaloguj się</a></li>
<li><a href="./register.html">Zarejestruj się</a></li>
</div>
</ul>
<div class="w3-content w3-section" style="max-width:500px">
<img class="mySlides" src="magnat1.jpg" style="width:100%">
<img class="mySlides" src="magnat2.jpg" style="width:100%">
</div>
<script>
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "block";
setTimeout(carousel, 1000); // Change image every 2 seconds
}
</script>
<div class="gallery">
<a href="./farba1.html">
<img alt="" src="magnat1.jpg" width="175" height="200">
</a>
<div class="desc">Magnat Delikatny Bronzyt</div>
</div>
<div class="gallery">
<a href="./farba2.html">
<img src="magnat2.jpg" width="175" height="200">
</a>
<div class="desc">Magnat Intrygujący Labradoryt</div>
</div>
<div class="footer">
<div class="toright">
<li>
<a target="_blank" rel="noopener noreferrer" href="https://twitter.com/"><i class="fab fa-twitter"></i></a>
<a target="_blank" rel="noopener noreferrer" href="https://facebook.com/"><i class="fab fa-facebook"></i></a>
<a target="_blank" rel="noopener noreferrer" href="https://instagram.com/"><i class="fab fa-instagram"></i></a>
<a target="_blank" rel="noopener noreferrer" href="https://pinterest.com/"><i class="fab fa-pinterest"></i></a>
</li>
</div>
</div>
</body>
</html>