-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwishlist.html
85 lines (73 loc) · 2.68 KB
/
wishlist.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
<!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">
<title>Wishlist</title>
<link rel="icon"
href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSKyKpjCSeyFZ3Mo1aie-BnVIm9mUp55qndCA&usqp=CAU"
type="image/x-icon" type="image/x-icon">
<title>Men's</title>
<link rel="stylesheet" href="styles/navbar.css">
<link rel="stylesheet" href="responsive/navbar.css">
<link rel="stylesheet" href="/styles/footer.css">
<link rel="stylesheet" href="/styles/wishlist.css">
<script src="script/navbar.js" type="module"></script>
<link rel="stylesheet" href="./responsive/wishlist.css">
</head>
<body>
<div id="navbar-start"></div>
<div id="name">
<p>Wish List</p>
<p>Keep track of all your favorite items here and add them to your Shopping Bag to purchase later</p>
</div>
<div id="wishnavbar">
<div id="tags">
<a href="">In stock</a>
<a href="">Sold Out</a>
<a href="">Unavailable in location</a>
</div>
<div id="icon">
<p><i class="fa-solid fa-pen"></i></p>
<p><i class="fa-solid fa-arrow-up-from-bracket"></i></p>
</div>
</div>
<div id="item">
<div id="check">
<input type="checkbox" name="" id="women">
<label for="men">Women</label>
<input type="checkbox" name="" id="men">
<label for="women">men</label>
</div>
<div id="noitem">0 item</div>
<div id="sorting">
<select name="sort" id="sort">
<option value="recent added">Recent Added</option>
<option value="availability">Availability</option>
<option value="htl">Price high to low</option>
<option value="lth">Price low to high</option>
</select>
</div>
</div>
<div id="container">
<!-- append data here -->
</div>
<div id="page">
<div class="d1"><i class="fa-solid fa-chevron-left"></i> <span>Previous</span></div>
<div id="d2">page 1 of 1</div>
<div class="d1"><span>Next</span> <i class="fa-solid fa-angle-right"></i></div>
</div>
<!-- footer and lower both the part of footer -->
<!-- footer start -->
<div id="footer"></div>
<!-- footer end -->
<!-- wishlist items -->
<!-- lower start -->
<hr>
<div id="lower"></div>
<!-- lower end -->
</body>
</html>
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<script src="/script/wishlist.js" type="module"></script>