-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
57 lines (50 loc) · 2.06 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/RPLCollective/styles/shop.css">
<link rel="stylesheet" href="/RPLCollective/styles/all.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=<>, initial-scale=1.0">
<title>Website | Shop</title>
<body>
<div class = "nav-bar">
<img class = "logo" src="/RPLCollectiveimages/RPL.svg" alt = "my company logo">
<a class = "nav-item-1" href = "index.html">Home</a>
<a class = "nav-item-2" href = "shop.html">Shop</a>
<a class = "nav-item-3" href = "contact.html">Contact</a>
</div>
<div class = "grid">
<div class = "grid-item-1">
<h1>Jordan 1 Retro High Mocha</h1>
<a class = "view-1">View ></a>
<img src="/RPLCollective/images/dark mocha.webp" alt="Dark Mocha">
</div>
<div class = "grid-item-2">
<h1>Nike Dunk Low Retro Pandas</h1>
<a class = "view-2">View ></a>
<img src="/RPLCollective/images/pandas.png" alt="Pandas">
</div>
<div class = "grid-item-3">
<h1>Adidas Yeezy Slide Onyx</h1>
<a class = "view-3">View ></a>
<img src="/RPLCollective/images/yeezy slide onyx.png" alt="yeezy slide onyx">
</div>
<div class = "grid-item-4">
<h1>Jordan 1 Retro High Lost & Found</h1>
<a class = "view-3">View ></a>
<img src="/RPLCollective/images/Lost and Found.png" alt="Lost and Found">
</div>
<div class = "grid-item-5">
<h1>Essentials Hoodie SS22 Black</h1>
<a class = "view-3">View ></a>
<img src="/RPLCollective/images/Essentials Hoodie SS22.png" alt="Essentials Hoodie Black">
</div>
<div class = "grid-item-6">
<h1>New Balance 990V5 Grey</h1>
<a class = "view-3">View ></a>
<img src="/RPLCollective/images/New Balance 990 V5 Grey.webp" alt="New Balance 990V5 Grey">
</div>
</div>
</body>
</html>