-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
204 lines (178 loc) · 6.42 KB
/
home.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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="stylesheet" href="./css/all.min.css">
<link rel="stylesheet" href="./css/fontawesome.min.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/home.css">
</head>
<body>
<header>
<div class="top-bar backgrd">
<div class="left-icons">
<div class="logo">
<a href="home.html">
<h1 class="txt-color">Click & Buy</h1>
</a>
</div>
</div>
<div class="right-icons">
<a href="profile.html" class="fa-solid fa-user white-things"></a>
<a href="CartPage.html" class="fa-solid fa-cart-shopping icons white-things">
<span id="cart-num"></span>
</a>
<a href="loginRegister.html" class="login white-things">LogIn</a>
</div>
</div>
</header>
<section class="first-section">
<div id="slider">
<figure class="img-div">
<img src="./imgs/back4.jpg">
<img src="./imgs/back3.jpg">
<img src="./imgs/back2.jpg">
<img src="./imgs/back1.jpeg">
</figure>
<!-- <div class="wave"></div> -->
</div>
</section>
<section>
<div class="about-section">
<div class="aboutContainer">
<h1>About Us</h1>
<p>Welcome to our Store! We are dedicated to providing the best services to our clients. Our team is composed of highly skilled professionals who are passionate about their work.</p>
<p>Our mission is to deliver high-quality products that exceed our clients' expectations. We believe in innovation, integrity, and customer satisfaction.</p>
<p>Join us on our journey to make a difference in the world. Together, we can achieve great things!</p>
</div>
</div>
</section>
<h1 class="gray-things cat-header" style="text-align: center;">Shop By Category</h1>
<section class="category-section gray-things">
<div class="wrapper">
<div class="wrapper-IMG">
<img src="./imgs/grocery-list.jpg">
<div class="content">
<h1>
Groceries
</h1>
</div>
</div>
</div>
<div class="wrapper">
<div class="wrapper-IMG">
<img src="./imgs/cosmetics.webp">
<div class="content">
<h1>
Cosmetics
</h1>
</div>
</div>
</div>
<div class="wrapper">
<div class="wrapper-IMG">
<img src="./imgs/Fragrances.webp">
<div class="content">
<h1>
Fragrances
</h1>
</div>
</div>
</div>
<div class="wrapper">
<div class="wrapper-IMG">
<img src="./imgs/furniture_1.webp">
<div class="content">
<h1>
Furtinure
</h1>
</div>
</div>
</div>
</section>
<section>
<div class="banner">
<div class="banner-div">
<div class="banner-div-img">
<img src="./imgs/Fast-shipping.png" class="filter-white">
</div>
<div>
<p class="white-things">Fast and Secure Shipping</p>
</div>
</div>
<div class="banner-div">
<div class="banner-div-img">
<img src="./imgs/best-quality.png" class="filter-white" >
</div>
<div>
<p class="white-things">Guaranteed Quality</p>
</div>
</div>
<div class="banner-div">
<div class="banner-div-img">
<img src="./imgs/best-deal.png" class="filter-white">
</div>
<div>
<p class="white-things"> Best Deals Offers</p>
</div>
</div>
<div class="banner-div">
<div class="banner-div-img">
<img src="./imgs/secure.png" class="filter-white">
</div>
<div>
<p class="white-things">Secure Shopping and Payment</p>
</div>
</div>
</div>
</section>
<h1 class="gray-things cat-header" style="text-align: center;">Featured Products</h1>
<section class="products">
<div id="products" class="productContineer">
</div>
<button id="loadAllPhotos" class="allProducts">
<a href="allProducts.html">
All Products
</a>
</button>
</section>
</div>
<footer class="footer-section">
<div class="contents">
<div class="content-footer">
<h3>Address</h3>
<p>
Name of street 12, Name of city,
<span>Post code 123</span>
</p>
</div>
<div class="content-footer">
<h3>Contact us</h3>
<p>
info@feyer.com
<span>123-456-7890</span>
</p>
</div>
<div class="content-footer">
<h3>Follow</h3>
<p>
Facebook
<span>Instagram</span>
</p>
</div>
<div class="content-footer">
<h3>Info</h3>
<p>
Shipping & returns
<span>Privacy Policy</span>
<span>Size guide</span>
<span>Terms conditions</span>
</p>
</div>
</div>
</footer>
<script src="js/home.js"></script>
</body>
</html>