-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-details.html
107 lines (96 loc) · 4.04 KB
/
product-details.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<link rel="icon" href="./assets/logo.png" type="image/x-icon">
<link rel="shortcut icon" href="./assets/logo.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/cec2b045b4.js" crossorigin="anonymous"></script>
<script src="./script.js"></script>
<title>Red Store | </title>
</head>
<body>
<!-------- Header -------->
<div class="header">
<div class="container">
<div class="navbar">
<div class="logo">
<a href="index.html"><img src="./assets/logo.png" alt="Red Store logo"></a>
</div>
<nav id="navMenu">
<ul id="menuItems">
<li><a href="./index.html">Home</a></li>
<li><a href="./products.html">Products</a></li>
<li><a href="./contact.html">Contact Us</a></li>
<li><a href="./login.html">Login</a></li>
</ul>
</nav>
<div class="cartContainer">
<img src="./assets/cart.png" alt="cart">
<div class="cartCounter">10</div>
</div>
<img class="menu-icon" id="menuIcon" src="./assets/menu.png" alt="mobile menu">
</div>
</div>
</div>
<!-------- Product details -------->
<div class="small-container singleProduct">
<div class="row row-2">
<a href="./products.html"><h2>All Products</h2></a>
</div>
<div class="row" id="productDetailsRow">
<!-- Product details will be dynamically inserted here -->
</div>
</div>
<div id="notification-container"></div>
<!-------- Related product -------->
<div class="small-container">
<h2 class="title">Related Products</h2>
<div class="row" id="relatedProductsRow">
</div>
</div>
<!-------- Footer -------->
<div class="footer">
<div class="container">
<div class="row">
<div class="footer-col-1">
<h3>Download our App</h3>
<p>Download App for Android and iOS</p>
<div class="app-logo">
<a href=""><img src="./assets/play-store.png" alt="Google Plat store"></a>
<a href=""><img src="./assets/app-store.png" alt="iOS App store"></a>
</div>
</div>
<div class="footer-col-2">
<img src="./assets/logo-white.png" alt="">
<p>Our purpose is to sustainably make the please and benefits of sports accessible to everyone.</p>
</div>
<div class="footer-col-3">
<h3>Sitemap</h3>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./products.html">Products</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./login.html">Login</a></li>
</ul>
</div>
<div class="footer-col-4">
<h3>Follow us</h3>
<ul>
<li><a href="">Facebook</a></li>
<li><a href="">Twitter/X</a></li>
<li><a href="">Instagram</a></li>
<li><a href="">YouTube</a></li>
</ul>
</div>
</div>
<hr>
<p class="copyright">Copyright 2023 - Res Store</p>
</div>
</div>
</body>
</html>