-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
62 lines (60 loc) · 2.35 KB
/
products.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
<!DOCTYPE html>
<html lang="en">
<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>GamPref - sklep z peryferiami komputerowymi</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div class="logo">GamPref</div>
<ul>
<a href="index.html"><li>Strona główna</li></a>
<a href="products.html"><li>Nasze produkty</li></a>
<a href="aboutus.html"><li>Kim jesteśmy?</li></a>
</ul>
</header>
<h1 style="text-align: center">GamPref - Oferta</h1>
<main>
<div class="categories_container">
<div class="category_image">
<span class="category_title">Komputery osobiste</span>
<img src="img/computer.gif" alt="" />
</div>
<div class="category_image">
<span class="category_title">Urządzenia peryferyjne</span>
<img src="img/fax.gif" alt="" />
</div>
<div class="category_image">
<span class="category_title">Sprzęt wideo</span>
<img src="img/camera.gif" alt="" />
</div>
<div class="category_image">
<span class="category_title">Sprzęt gamingowy</span>
<img src="img/gaming.gif" alt="" />
</div>
<div class="category_image">
<span class="category_title">Sprzęt muzyczny</span>
<img src="img/music.gif" alt="" />
</div>
<div class="category_image">
<span class="category_title">Sprzęt specjalistyczny</span>
<img src="img/pro.gif" alt="" />
</div>
</div>
</main>
<footer>
<h2 style="text-align: center; margin-top: 20px">Znajdź nas w sieci!</h2>
<div>
<a href="https://facebook.com/dudzmiko"><img src="img/facebook.svg" alt="" /></a>
<a href="https://instagram.com/dudzmiko"><img src="img/instagram.svg" alt="" /></a>
<a href="https://github.com/dudzmiko"><img src="img/github.svg" alt="" /></a>
<a href="https://www.linkedin.com/in/dudzmiko/"><img src="img/linkedin.svg" alt="" /></a>
<a href="https://twitter.com/dudzmiko"><img src="img/twitter.svg" alt="" /></a>
</div>
GamPref © 2022
</footer>
</body>
</html>