-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProduct.html
76 lines (76 loc) · 2.58 KB
/
Product.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="RainyDays, jackets, weather, sports, outdoors, hiking">
<meta name="description" content="Solstice Goretex, Warm & comfortable water repellent jacket. Perfect for outdoor activities. Add to cart">
<title>Product</title>
<link rel="stylesheet" href="css/RainyDays.css">
<script defer src="/js/navigation.js" type="module"></script>
<!-- <script defer src="./js/products.js" type="module"></script> -->
<script defer src="./js/details.js" type="module"></script>
<script src="https://kit.fontawesome.com/b318972c4d.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<!-- Hotjar Tracking Code for my site -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3396948,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="index.html">
<h4>Rainy Days</h4>
</a>
</div>
<ul class="nav-links">
<li>
<a class="active" href="index.html">Home</a>
</li>
<li>
<a href="Shop.html">Shop</a>
</li>
<li>
<a href="Contact.html">Contact</a>
</li>
<li>
<a href="About.html">About</a>
</li>
</ul>
<div class="cart-container">
<div>
<a href="/checkout.html">
<img src="/images/cart 1.png" class="cart-img" alt="Shopping cart icon">
</a>
</div>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</div>
</nav>
</header>
<main class="product-main">
<div class="logorainydays">
</div>
<section class="productGridContainer">
</section>
</main>
<footer>
<div class="footer-container">
<p class="footer-p">Copyright © 2022</p>
</div>
</footer>
</body>
</html>