-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (133 loc) · 4.35 KB
/
index.html
File metadata and controls
153 lines (133 loc) · 4.35 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exclusive</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"
integrity="sha512-2SwdPD6INVrV/lHTZbO2nodKhrnDdJK9/kg2XD1r9uGqPo1cUbujc+IYdlYdEErWNu69gVcYgdxlmVmzTWnetw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="home.css" />
</head>
<body>
<header>
<nav class="nav_bar">
<div class="title">
<p>Exclusive</p>
</div>
<div class="searchbar">
<form action="">
<input type="search" placeholder="Search for Product" />
</form>
</div>
<div class="links">
<ul class="list">
<li>
<a href="#"><i class="fa-solid fa-house"></i> Home</a>
</li>
<li>
<a href="favorite.html"
><i class="fa-regular fa-heart"></i> Favorite</a
>
</li>
<li>
<a href="cart.html"
><i class="fa-solid fa-cart-shopping"></i> Cart</a
>
</li>
</ul>
</div>
</nav>
</header>
<!-- ---------main section------------ -->
<div class="main-content">
<p class="flash-sales" id="123">Flash Sales</p>
<!-- slider -->
<div class="slider">
<div class="slides">
<img id="slides" src="assets/Frame_560.png" alt="Product slide" />
</div>
</div>
<!-- Start Shopping -->
<button class="shop-btn" id="shopping">Start Shopping</button>
</div>
<hr style="width: 90%" />
<!-- Categories -->
<div class="main_products">
<div class="cat">
<img src="assets/application.png" alt="" id="roller-img" />
<h3><b>Categories</b></h3>
</div>
<h2>Browse By Category</h2>
<div class="category_img">
<div class="cat_card c1">
<a href="#products"><img src="assets/electronics.png" alt="" /></a>
<p>electronics</p>
</div>
<div class="cat_card c2">
<a href="#products"><img src="assets/jewellery.png" alt="" /></a>
<p>jewelery</p>
</div>
<div class="cat_card c3">
<a href="#products"><img src="assets/brand.png" alt="" /></a>
<p>men's clothing</p>
</div>
<div class="cat_card c4">
<a href="#products"><img src="assets/skincare.png" alt="" /></a>
<p>women's clothing</p>
</div>
</div>
<hr id="products" style="width: 90%" />
<div class="our_products">
<h3><b>Our products</b></h3>
</div>
<h2><strong>Explore our products</strong></h2>
<div class="products_section" id="products_section"></div>
</div>
<div class="veiw_all">
<button id="view-all">Veiw All products</button>
</div>
<hr />
<div class="Advantages">
<img src="assets/Frame701.png" alt="" />
<img src="assets/Frame702.png" alt="" />
<img src="assets/Frame703.png" alt="" />
</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="home.js"></script>
<!-- <script>
function toggleTheme() {
const dark = document.getElementById('shopping')
dark.toggleAttribute("data-theme", "dark");
}
</script> -->
</body>
</html>