-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
380 lines (366 loc) · 14.7 KB
/
Copy pathindex.html
File metadata and controls
380 lines (366 loc) · 14.7 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
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<!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" />
<link
rel="shortcut icon"
href="./assets/img/favicon.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="./assets/css/all.min.css" />
<link rel="stylesheet" href="./assets/css/output.css" />
<title>Landing Page</title>
</head>
<body class="font-mono">
<!-- Header Area Start -->
<header id="home" class="sticky top-0 w-full z-50">
<nav class="flex items-center bg-white shadow h-16">
<div class="container__main flex items-center">
<a href="#home" class="mr-auto text-xl font-semibold text-sky-500"
>HeLLo.</a
>
<button class="text-lg ml-5 mt-2 md:hidden">
<i class="fa-solid fa-bars"></i>
</button>
<ul class="md:flex items-center gap-7 text-sm hidden">
<li>
<a href="#home" class="hover:text-sky-500 transition-colors"
>Home</a
>
</li>
<li>
<a href="#about" class="hover:text-sky-500 transition-colors"
>About Us</a
>
</li>
<li>
<a href="#services" class="hover:text-sky-500 transition-colors"
>Services</a
>
</li>
<li>
<a href="#contact" class="hover:text-sky-500 transition-colors"
>Contact Us</a
>
</li>
<button class="rounded__btn rounded-3xl ml-3">Get Started</button>
</ul>
</div>
</nav>
</header>
<!-- Header Area End -->
<!-- About Us Area Start -->
<section id="about" class="mb-16 md:mb-0">
<div class="container__main">
<div class="grid grid-cols-1 md:grid-cols-2 items-center">
<div>
<img src="./assets/img/hero.jpg" alt="Hero" />
</div>
<div>
<h1 class="text-3xl font-semibold text-gray-800">
Best
<span class="text-sky-600">Software Development</span> Company For
Next Generation.
</h1>
<p class="text-gray-600 my-5">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Veritatis voluptatibus optio repudiandae assumenda doloremque.
</p>
<button class="rounded__btn rounded-3xl">Get Started</button>
</div>
</div>
</div>
</section>
<!-- About Us Area End -->
<!-- Activity Area Start -->
<section class="mb-16">
<div class="container__main">
<div class="text-center mb-12">
<h3 class="text-sky-500 font-semibold text-2xl">Why choose us?</h3>
<p class="text-gray-600 mt-1">
Products and components delivered to your home
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-7">
<article class="card__hover__bg">
<i class="fa-solid fa-truck-fast text-5xl text-sky-500"></i>
<h3 class="text-xl font-semibold text-gray-800 my-4">
Free shipping
</h3>
<p class="text-sm text-gray-600">
Enjoy Order in a hand using the fresness of groceries.
</p>
</article>
<article class="card__hover__bg">
<i
class="fa-solid fa-hand-holding-dollar text-5xl text-sky-500"
></i>
<h3 class="text-xl font-semibold text-gray-800 my-4">
15 days returns
</h3>
<p class="text-sm text-gray-600">
Order in a handy way using the freshness of the groceries.
</p>
</article>
<article class="card__hover__bg">
<i class="fa-solid fa-building-lock text-5xl text-sky-500"></i>
<h3 class="text-xl font-semibold text-gray-800 my-4">
Secure checkout
</h3>
<p class="text-sm text-gray-600">
If you get rotten items - return immediately to us.
</p>
</article>
</div>
</div>
</section>
<!-- Activity Area End -->
<!-- Service Area Start -->
<section id="services" class="py-16 bg-gray-50">
<div class="container__main">
<div class="text-center mb-12">
<h3 class="text-sky-500 font-semibold text-2xl">
What do we provide?
</h3>
<p class="text-gray-600 mt-1">
Products and components delivered to your home
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-x-7">
<article class="mx-auto service__card">
<div class="h-72 overflow-hidden">
<img
src="./assets/img/services/service-1.jpg"
alt="Nesciunt Mete"
class="h-full w-full rounded-lg transition-transform duration-300 object-cover"
/>
</div>
<div
class="w-10/12 mx-auto rounded-lg bg-white opacity-90 shadow-md text-center px-5 pb-8 z-10 relative -top-24 -mb-16"
>
<div
class="w-20 h-20 flex justify-center items-center text-center rounded-full transition-colors duration-300 bg-sky-500 border-[6px] border-white text-white mx-auto relative -top-10 service__icon"
>
<i class="fa-solid fa-chart-line text-2xl inline-block"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 -mt-4 mb-4">
Nesciunt Mete
</h3>
<p class="text-gray-600">
Provident nihil minus qui consequatur non omnis maiores. Eos
accusantium minus dolores iure perferendis.
</p>
</div>
</article>
<article class="mx-auto service__card">
<div class="h-72 overflow-hidden">
<img
src="./assets/img/services/service-2.jpg"
alt="Eosle Commodi"
class="h-full w-full rounded-lg transition-transform duration-300 object-cover"
/>
</div>
<div
class="w-10/12 mx-auto rounded-lg bg-white opacity-90 shadow-md text-center px-5 pb-8 z-10 relative -top-24 -mb-16"
>
<div
class="w-20 h-20 flex justify-center items-center text-center rounded-full transition-colors duration-300 bg-sky-500 text-white border-[6px] border-white mx-auto relative -top-10 service__icon"
>
<i
class="fa-solid fa-tower-broadcast text-2xl inline-block"
></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 -mt-4 mb-4">
Eosle Commodi
</h3>
<p class="text-gray-600">
Ut autem aut autem non a. Sint sint sit facilis nam iusto sint.
Libero corrupti neque eum hic non ut nesciunt dolorem.
</p>
</div>
</article>
<article class="mx-auto service__card">
<div class="h-72 overflow-hidden">
<img
src="./assets/img/services/service-3.jpg"
alt="Ledo Markt"
class="h-full w-full rounded-lg transition-transform duration-300 object-cover"
/>
</div>
<div
class="w-10/12 mx-auto rounded-lg bg-white opacity-90 shadow-md text-center px-5 pb-8 z-10 relative -top-24 -mb-16"
>
<div
class="w-20 h-20 flex justify-center items-center text-center rounded-full transition-colors duration-300 bg-sky-500 text-white border-[6px] border-white mx-auto relative -top-10 service__icon"
>
<i class="fa-solid fa-disease text-2xl inline-block"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 -mt-4 mb-4">
Ledo Markt
</h3>
<p class="text-gray-600">
Ut excepturi voluptatem nisi sed. Quidem fuga consequatur. Minus
ea aut. Vel qui id voluptas adipisci eos earum corrupti.
</p>
</div>
</article>
<article class="mx-auto service__card">
<div class="h-72 overflow-hidden">
<img
src="./assets/img/services/service-4.jpg"
alt="Asperiores Commodit"
class="h-full w-full rounded-lg transition-transform duration-300 object-cover"
/>
</div>
<div
class="w-10/12 mx-auto rounded-lg bg-white opacity-90 shadow-md text-center px-5 pb-8 z-10 relative -top-24 -mb-16"
>
<div
class="w-20 h-20 flex justify-center items-center text-center rounded-full transition-colors duration-300 bg-sky-500 text-white border-[6px] border-white mx-auto relative -top-10 service__icon"
>
<i class="fa-solid fa-box text-2xl inline-block"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 -mt-4 mb-4">
Asperiores Commodit
</h3>
<p class="text-gray-600">
Non et temporibus minus omnis sed dolor esse consequatur.
Cupiditate sed error ea fuga sit provident adipisci neque.
</p>
</div>
</article>
<article class="mx-auto service__card">
<div class="h-72 overflow-hidden">
<img
src="./assets/img/services/service-5.jpg"
alt="Velit Doloremque"
class="h-full w-full rounded-lg transition-transform duration-300 object-cover"
/>
</div>
<div
class="w-10/12 mx-auto rounded-lg bg-white opacity-90 shadow-md text-center px-5 pb-8 z-10 relative -top-24 -mb-16"
>
<div
class="w-20 h-20 flex justify-center items-center text-center rounded-full transition-colors duration-300 bg-sky-500 text-white border-[6px] border-white mx-auto relative -top-10 service__icon"
>
<i class="fa-solid fa-calendar-days text-2xl inline-block"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 -mt-4 mb-4">
Velit Doloremque
</h3>
<p class="text-gray-600">
Cumque et suscipit saepe. Est maiores autem enim facilis ut aut
ipsam corporis aut. Sed animi at autem alias eius labore.
</p>
</div>
</article>
<article class="mx-auto service__card">
<div class="h-72 overflow-hidden">
<img
src="./assets/img/services/service-6.jpg"
alt="Dolori Architecto"
class="h-full w-full rounded-lg transition-transform duration-300 object-cover"
/>
</div>
<div
class="w-10/12 mx-auto rounded-lg bg-white opacity-90 shadow-md text-center px-5 pb-8 z-10 relative -top-24 -mb-16"
>
<div
class="w-20 h-20 flex justify-center items-center text-center rounded-full transition-colors duration-300 bg-sky-500 text-white border-[6px] border-white mx-auto relative -top-10 service__icon"
>
<i class="fa-regular fa-message text-2xl inline-block"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 -mt-4 mb-4">
Dolori Architecto
</h3>
<p class="text-gray-600">
Hic molestias ea quibusdam eos. Fugiat enim doloremque aut neque
non et debitis iure. Corrupti recusandae ducimus enim.
</p>
</div>
</article>
</div>
</div>
</section>
<!-- Service Area End -->
<!-- Contact us Area Start -->
<section id="contact" class="py-16">
<div class="container__main grid grid-cols-1 lg:grid-cols-3 gap-10">
<div class="px-10 py-8 shadow border bg-gray-50">
<h3 class="text-sky-500 font-semibold text-2xl">Get in Touch</h3>
<p class="text-gray-600 mt-1">
Just say Hello! Let us know more about you.
</p>
<div class="mt-5">
<div class="flex gap-7 py-6 border-b">
<i
class="fa-solid fa-location-dot text-2xl inline-block text-sky-500"
></i>
<div>
<h4 class="text-gray-600 text-lg font-semibold">Location:</h4>
<p class="text-sm text-gray-600">
A108 Adam Street, New York, NY 535022
</p>
</div>
</div>
<div class="flex gap-7 py-6 border-b">
<i
class="fa-solid fa-envelope text-2xl inline-block text-sky-500"
></i>
<div>
<h4 class="text-gray-600 text-lg font-semibold">Email:</h4>
<p class="text-sm text-gray-600">info@example.com</p>
</div>
</div>
<div class="flex gap-7 py-6">
<i
class="fa-solid fa-mobile-screen-button text-2xl inline-block text-sky-500"
></i>
<div>
<h4 class="text-gray-600 text-lg font-semibold">Call:</h4>
<p class="text-sm text-gray-600">+1 5589 55488 55</p>
</div>
</div>
</div>
</div>
<div class="col-span-1 lg:col-span-2">
<div class="flex justify-between flex-col sm:flex-row sm:gap-7">
<input
type="text"
class="input__field mb-7"
placeholder="Your Name"
/>
<input
type="email"
class="input__field mb-7"
placeholder="Your Email"
/>
</div>
<input type="text" class="input__field mb-7" placeholder="Subject" />
<textarea
class="input__field mb-7"
placeholder="Message"
rows="8"
></textarea>
<div class="text-center">
<button class="rounded__btn px-10 py-3 text-base rounded">
Send Message
</button>
</div>
</div>
</div>
</section>
<!-- Contact us Area End -->
<!-- Footer Area Start -->
<footer class="bg-gray-50">
<div class="container__main text-center py-8">
© Copyright
<span class="text-sky-500 font-semibold">HeLLo.</span> all right
resolve.
</div>
</footer>
<!-- Footer Area End -->
</body>
</html>