-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjackets.html
More file actions
63 lines (63 loc) · 2.05 KB
/
jackets.html
File metadata and controls
63 lines (63 loc) · 2.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="we sell quality rain jackets" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="module" src="./js/jackets.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Rainydays | Jackets</title>
</head>
<body>
<header>
<nav>
<div class="top-logo">
<img
src="https://i.ibb.co/XxXx8pm/rd-logo.png"
alt="rainydays logo"
/>
</div>
<ul class="top-nav">
<li>
<i class="fa-solid fa-house"></i
><span><a href="index.html">Home</a></span>
</li>
<li>
<i class="fa-solid fa-magnifying-glass"></i><span>Search</span>
</li>
<li><i class="fa-solid fa-user"></i><span>Page</span></li>
<li><i class="fa-solid fa-heart"></i><span>Favorites</span></li>
<li>
<i class="fa-solid fa-cart-shopping"></i
><span><a href="checkout.html">Cart</a></span>
</li>
</ul>
</nav>
</header>
<main>
<h1>For Her</h1>
<div>
<button class="filter-buttons" id="for-her">For Her</button>
<button class="filter-buttons" id="for-him">For Him</button>
<button class="filter-buttons" id="clear-filter">Reset Filter</button>
<button id="clear-cart">Clear Cart</button>
</div>
<section id="jacket-display"></section>
</main>
<footer>
<nav>
<ul class="footer">
<img src="https://i.ibb.co/QrtYPzF/rd-bottom-logo.png" alt="" />
<li><a href="about-us.html">about us</a></li>
<li><a href="contact-us.html">contact us</a></li>
<li><a href="#">terms of service</a></li>
<li><h6>© Rainydays 2023</h6></li>
</ul>
</nav>
</footer>
</body>
</html>