-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfavorite.html
More file actions
80 lines (67 loc) · 2.07 KB
/
favorite.html
File metadata and controls
80 lines (67 loc) · 2.07 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exclusive - Favorites</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="home.css" />
<link rel="stylesheet" href="style_hed_fot.css" />
<link rel="stylesheet" href="favorite.css" />
</head>
<body>
<nav class="nav_bar">
<div class="title">
<p>Exclusive</p>
</div>
<div class="links">
<ul class="list">
<li>
<a href="index.html"><i class="fa-solid fa-house"></i> Home</a>
</li>
<li>
<a href="cart.html"
><i class="fa-solid fa-cart-shopping"></i> Cart</a
>
</li>
</ul>
</div>
</nav>
<!-- main section -->
<div class="main_fav">
<h2>My Favorite Products</h2>
<div id="favorites_section" class="products_section"></div>
</div>
<footer>
<div class="col1" id="demo">
<h3><b>About Exclusive</b></h3>
<p>
welcome to <strong>My Store</strong> – your one-stop destination for
quality products at affordable prices. We are passionate about
delivering the best shopping experience, whether you’re looking for
electronics, fashion, or home essentials. Our mission is to combine
convenience, trust, and innovation to make online shopping simple and
enjoyable.
</p>
</div>
<div class="col2">
<h3>Support</h3>
<p>exclusive@gmail.com</p>
<p>01094545216</p>
</div>
<div class="col3">
<h3>Quick links</h3>
<a href="cart.html">Cart</a>
<a href="#demo">Privacy Policy</a>
<a href="#demo">Terms Of Use</a>
<a href="#demo">FAQ</a>
</div>
</footer>
<script src="favorite.js"></script>
</body>
</html>