-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
64 lines (50 loc) · 2.34 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
56
57
58
59
60
61
62
63
64
<!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">
<script type="module" src="/scripts/render-products.js"></script>
<title>Team Liquid | Shop</title>
<link rel="stylesheet" href="styles/all.css">
<link rel="stylesheet" href="styles/shop.css">
</head>
<body>
<nav class="navbar">
<img src="images/logo.png" alt="Logo">
<ul class="list">
<li><a href="homepage.html" class="navItemRight">Home</a></li>
<li class="bold-underline"><a href="shop.html" class="navItemRight">Shop</a></li>
<li><a href="contact.html" class="navItemRight">Contact</a></li>
</nav>
<img class="Logo" src="images/og-logo.png" alt="Logo">
<div class="parent-container">
<div class="grid-container">
<div class="product-card">
<img src="images/products/Shirt1.png" alt="Shirt1">
<div class="img-text">
<h2>LIQUID HONDA HOODIE</h2>
<p class="price">$75.00 CAD                            </p>
<button class="view-product-btn">View Product></button>
</div>
</div>
<div class="product-card">
<img src="images/products/Shirt3.png" alt="Shirt2">
<div class="img-text">
<h2>LIQUID ROGUE HOODIE</h2>
<p class="price">$90.00 CAD                        </p>
<button class="view-product-btn">View Product></button>
</div>
</div>
<div class="product-card">
<img src="images/products/shirt2.png" alt="Shirt2">
<div class="img-text">
<h2>SPIDERMAN HOODIE</h2>
<p class="price">$90.00 CAD                            </p>
<button class="view-product-btn">View Product></button>
</div>
</div>
</div>
</div>
</body>
</html>