-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
469 lines (428 loc) · 22.8 KB
/
index.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
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="./favicon.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="robots" content="index,follow"/>
<meta name="description" content="Prime House | The Best Way You Buy House"/>
<meta name="author" content="G7M7T1"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Prime House</title>
</head>
<body>
<!--site nav-->
<nav class="bg-white shadow-lg">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between">
<div class="flex space-x-7">
<a class="flex items-center py-4 px-2" href="#">
<img class="h-8 mr-2" src="./Photo/logo.png" alt="logo">
<span class="font-semibold text-gray-500 text-lg">Prime House</span>
</a>
</div>
<div class="hidden md:flex space-x-1">
<a class="link-tag link-active" href="">Home</a>
<a class="link-tag link-hover" href="">Services</a>
<a class="link-tag link-hover" href="">About</a>
<a class="link-tag link-hover" href="">Contact Us</a>
</div>
</div>
</div>
</nav>
<!--site nav-->
<!--site banner-->
<main class="flex flex-col justify-center items-center">
<div class="mt-10 px-4 md:mt-10 lg:flex max-w-screen-2xl">
<div class="ss:text-center lg:text-left lg:w-5/5 sg:w-3/5 2xl:w-1/2 lg:flex lg:flex-col lg:justify-center 2xl:px-8 xl:px-2">
<h1 class="tracking-tight font-extrabold ss:text-2xl sm:text-5xl md:text-6xl">
<span class="block">Prime House</span>
<span class="block text-green-500">The Best Way You Buy</span>
</h1>
<p class="mt-3 text-base text-gray-500 md:text-xl md:mt-5 sm:mt-5 sm:text-lg sm:max-w-2xl sm:mx-auto lg:mx-0">
At prime house, we are ensure that our clients get the best properties at affordable prices. Luxury is
our
priority and budget is our constrain. Pick and choose from 1000+ properties across the globe.
</p>
</div>
<div class="sg:w-2/5 2xl:w-1/2 m1lg:hidden flex items-center justify-center 2xl:px-8 xl:px-2">
<img class="max-h-72" src="./Photo/house0.png" alt="house">
</div>
</div>
<div class="sm:flex sm:justify-center xl:mt-5 ss:mt-5 sm:mt-0">
<div class="ss:m-3">
<a class="flex justify-center bg-green-500 text-white px-8 py-3 rounded-md" href="">View House</a>
</div>
<div class="ss:m-3">
<a class="flex justify-center bg-green-100 text-green-700 px-8 py-3 rounded-md" href="">Explore Location</a>
</div>
</div>
</main>
<!--site banner-->
<!--textarea-->
<div class="mt-5 flex justify-center p-10">
<h2 class="sm:text-3xl text-gray-500 mb-2 ss:text-xl">Check Recent House</h2>
</div>
<!--textarea-->
<!--card section-->
<div class="flex justify-center">
<div class="grid p-10 ss:grid-cols-1 sm:grid-cols-1 md:grid-cols-3 lg:grid-cols-3 sg:grid-cols-3 xl:grid-cols-3 max-w-screen-2xl gap-5">
<div class="rounded-xl overflow-hidden shadow-lg">
<img class="w-full rounded-t-xl" src="./Photo/home1.jpg" alt="House Photo">
<div class="px-6 py-4">
<div class="font-bold text-xl">Orchid Villa</div>
<p class="text-gray-600">Located in the suburbs of california, orchid villa offers luxury with a modern
touch. Equipped with green lighting and a rainwater harvesting system, this property is
eco-friendly. </p>
</div>
<div class="px-6 pt-4 pb-1 flex justify-center">
<span class="inline-block bg-green-400 rounded-full px-3 py-1 text-sm font-semibold text-white mx-2 mb-2">7 Beds</span>
<span class="inline-block bg-green-400 rounded-full px-3 py-1 text-sm font-semibold text-white mx-2 mb-2">7 Baths</span>
</div>
<div class="px-6 pt-1 pb-4 flex items-center justify-center">
<span class="inline-block bg-green-400 rounded-full px-3 py-1 text-white font-bold text-xl">$ 4,500,000</span>
</div>
<div class="bg-green-100 p-4 flex justify-center items-center cursor-pointer rounded-b-xl">
<button class="text-green-700 font-bold text-xl">Check More</button>
</div>
</div>
<div class="rounded-xl overflow-hidden shadow-lg">
<img class="w-full rounded-t-xl" src="./Photo/home2.jpg" alt="House Photo">
<div class="px-6 py-4">
<div class="font-bold text-xl">577 Gracia</div>
<p class="text-gray-600">Located in the suburbs of california, orchid villa offers luxury with a modern
touch. Equipped with green lighting and a rainwater harvesting system, this property is
eco-friendly. </p>
</div>
<div class="px-6 pt-4 pb-1 flex justify-center">
<span class="inline-block bg-green-400 rounded-full px-3 py-1 text-sm font-semibold text-white mx-2 mb-2">7 Beds</span>
<span class="inline-block bg-green-400 rounded-full px-3 py-1 text-sm font-semibold text-white mx-2 mb-2">7 Baths</span>
</div>
<div class="px-6 pt-1 pb-4 flex items-center justify-center">
<span class="inline-block bg-green-400 rounded-full px-3 py-1 text-white font-bold text-xl">$ 4,500,000</span>
</div>
<div class="bg-green-100 p-4 flex justify-center items-center cursor-pointer rounded-b-xl">
<button class="text-green-700 font-bold text-xl">Check More</button>
</div>
</div>
<div class="rounded-xl overflow-hidden shadow-lg">
<img class="w-full rounded-t-xl" src="./Photo/home3.jpg" alt="House Photo">
<div class="px-6 py-4">
<div class="font-bold text-xl">Nexa Epitome</div>
<p class="text-gray-600">Located in the suburbs of california, orchid villa offers luxury with a modern
touch. Equipped with green lighting and a rainwater harvesting system, this property is
eco-friendly. </p>
</div>
<div class="px-6 pt-4 pb-1 flex justify-center">
<span class="inline-block bg-green-400 rounded-full px-3 py-1 text-sm font-semibold text-white mx-2 mb-2">7 Beds</span>
<span class="inline-block bg-green-400 rounded-full px-3 py-1 text-sm font-semibold text-white mx-2 mb-2">7 Baths</span>
</div>
<div class="px-6 pt-1 pb-4 flex items-center justify-center">
<span class="inline-block bg-green-400 rounded-full px-3 py-1 text-white font-bold text-xl">$ 4,500,000</span>
</div>
<div class="bg-green-100 p-4 flex justify-center items-center cursor-pointer rounded-b-xl">
<button class="text-green-700 font-bold text-xl">Check More</button>
</div>
</div>
</div>
</div>
<!--card section-->
<!--banner section-->
<div class="h-screen flex items-center justify-center bg-no-repeat bg-cover bg-center my-5"
style="background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./Photo/house4.jpg')">
<div class="container flex flex-col items-center justify-center">
<h2 class="text-4xl font-bold text-white mb-4 text-center">Experience Luxury Like Never Before </h2>
<h3 class="text-2xl mb-8 text-gray-200 text-center">50+ Exotic locations across the globe</h3>
<button class="text-white uppercase border-2 px-8 py-4 font-bold">Explore Location</button>
</div>
</div>
<!--banner section-->
<!--textarea-->
<div class="mt-5 flex justify-center p-10">
<h2 class="sm:text-3xl text-gray-500 mb-2 ss:text-xl">Location</h2>
</div>
<!--textarea-->
<!--other card-->
<div class="flex justify-center">
<div class="grid p-10 ss:grid-cols-1 sm:grid-cols-1 md:grid-cols-3 lg:grid-cols-3 sg:grid-cols-3 xl:grid-cols-3 max-w-screen-2xl gap-5">
<div class="rounded-xl overflow-hidden shadow-lg">
<img class="w-full rounded-t-xl" src="./Photo/2.jpg" alt="House Photo">
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2 text-center">New York</div>
<p class="text-gray-600 text-center">New York City comprises 5 boroughs sitting where the Hudson River
meets the Atlantic Ocean. At its core is Manhattan, a densely populated borough that’s among the
world’s major commercial, financial and cultural centers. Its iconic sites include skyscrapers such
as the Empire State Building and sprawling Central Park.</p>
</div>
<div class="bg-green-500 p-4 flex justify-center items-center cursor-pointer rounded-b-xl">
<button class="text-white font-bold text-xl">Check More</button>
</div>
</div>
<div class="rounded-xl overflow-hidden shadow-lg">
<img class="w-full rounded-t-xl" src="./Photo/3.jpg" alt="House Photo">
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2 text-center">San Fransisco</div>
<p class="text-gray-600 text-center">New York City comprises 5 boroughs sitting where the Hudson River
meets the Atlantic Ocean. At its core is Manhattan, a densely populated borough that’s among the
world’s major commercial, financial and cultural centers. Its iconic sites include skyscrapers such
as the Empire State Building and sprawling Central Park.</p>
</div>
<div class="bg-green-500 p-4 flex justify-center items-center cursor-pointer rounded-b-xl">
<button class="text-white font-bold text-xl">Check More</button>
</div>
</div>
<div class="rounded-xl overflow-hidden shadow-lg">
<img class="w-full rounded-t-xl" src="./Photo/4.jpg" alt="House Photo">
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2 text-center">California</div>
<p class="text-gray-600 text-center">New York City comprises 5 boroughs sitting where the Hudson River
meets the Atlantic Ocean. At its core is Manhattan, a densely populated borough that’s among the
world’s major commercial, financial and cultural centers. Its iconic sites include skyscrapers such
as the Empire State Building and sprawling Central Park.</p>
</div>
<div class="bg-green-500 p-4 flex justify-center items-center cursor-pointer rounded-b-xl">
<button class="text-white font-bold text-xl">Check More</button>
</div>
</div>
</div>
</div>
<!--other card-->
<!--other banner section-->
<div class="flex h-96 items-center justify-center bg-no-repeat bg-cover bg-center my-5"
style="background-image: linear-gradient( 102.1deg, rgba(96,221,142,1) 8.7%, rgba(24,138,141,1) 88.1% );;">
<div class="container flex flex-col items-center justify-center">
<h2 class="ss:text-3xl md:text-4xl font-bold text-white mb-4 text-center">Save upto 50% on the next bill</h2>
<h3 class="ss:text-xl md:text-2xl mb-8 text-gray-200 text-center">The lowest fee you never see before</h3>
<button class="text-gray-500 rounded-2xl uppercase bg-white border-2 px-8 py-4 font-bold">Enquire</button>
</div>
</div>
<!--other banner section-->
<!--textarea-->
<div class="mt-5 flex justify-center p-10">
<h2 class="sm:text-3xl text-gray-500 mb-2 ss:text-xl">Our Review</h2>
</div>
<!--textarea-->
<!--review card-->
<div class="flex justify-center">
<div class="p-10 grid gap-5 ss:grid-cols-1 sm:grid-cols-1 md:grid-cols-3 lg:grid-cols-3 max-w-screen-2xl">
<div class="shadow-xl bg-white rounded-xl p-4 ss:px-8 sm:px-12 md:px-6">
<p class="text-gray-500 text-xs">
Lorem ipsum dolor sit amet, coer adig elit. Aliam arco autem det dolm does, eaue est erci, exbo fugit
iste maam magni nesnt nulla pedis, siue tera toam vitae votum tatum fugit nest iste erci elit eaue arco
maam toam vitae.
</p>
<div class="flex bg-green-100 items-center rounded-full mt-6 mb-4">
<a href="" class="block relative">
<img class="h-10 w-10 rounded-full overflow-hidden mx-auto" src="./Photo/avataaars.png" alt="">
</a>
<div class="flex flex-col ml-2 justify-between">
<span class="text-sm text-green-500 font-semibold">Luna Marion</span>
<span class="text-xs flex items-center">Member, Gold VIP</span>
</div>
</div>
</div>
<div class="shadow-xl bg-white rounded-xl p-4 ss:px-8 sm:px-12 md:px-6">
<p class="text-gray-500 text-xs">
Lorem ipsum dolor sit amet, coer adig elit. Aliam arco autem det dolm does, eaue est erci, exbo fugit
iste maam magni nesnt nulla pedis, siue tera toam vitae votum tatum fugit nest iste erci elit eaue arco
maam toam vitae.
</p>
<div class="flex bg-green-100 items-center rounded-full mt-6 mb-4">
<a href="" class="block relative">
<img class="h-10 w-10 rounded-full overflow-hidden mx-auto" src="./Photo/avataaars.png" alt="">
</a>
<div class="flex flex-col ml-2 justify-between">
<span class="text-sm text-green-500 font-semibold">Luna Marion</span>
<span class="text-xs flex items-center">Member, Gold VIP</span>
</div>
</div>
</div>
<div class="shadow-xl bg-white rounded-xl p-4 ss:px-8 sm:px-12 md:px-6">
<p class="text-gray-500 text-xs">
Lorem ipsum dolor sit amet, coer adig elit. Aliam arco autem det dolm does, eaue est erci, exbo fugit
iste maam magni nesnt nulla pedis, siue tera toam vitae votum tatum fugit nest iste erci elit eaue arco
maam toam vitae.
</p>
<div class="flex bg-green-100 items-center rounded-full mt-6 mb-4">
<a href="" class="block relative">
<img class="h-10 w-10 rounded-full overflow-hidden mx-auto" src="./Photo/avataaars.png" alt="">
</a>
<div class="flex flex-col ml-2 justify-between">
<span class="text-sm text-green-500 font-semibold">Luna Marion</span>
<span class="text-xs flex items-center">Member, Gold VIP</span>
</div>
</div>
</div>
<div class="shadow-xl bg-white rounded-xl p-4 ss:px-8 sm:px-12 md:px-6">
<p class="text-gray-500 text-xs">
Lorem ipsum dolor sit amet, coer adig elit. Aliam arco autem det dolm does, eaue est erci, exbo fugit
iste maam magni nesnt nulla pedis, siue tera toam vitae votum tatum fugit nest iste erci elit eaue arco
maam toam vitae.
</p>
<div class="flex bg-green-100 items-center rounded-full mt-6 mb-4">
<a href="" class="block relative">
<img class="h-10 w-10 rounded-full overflow-hidden mx-auto" src="./Photo/avataaars.png" alt="">
</a>
<div class="flex flex-col ml-2 justify-between">
<span class="text-sm text-green-500 font-semibold">Luna Marion</span>
<span class="text-xs flex items-center">Member, Gold VIP</span>
</div>
</div>
</div>
<div class="shadow-xl bg-white rounded-xl p-4 ss:px-8 sm:px-12 md:px-6">
<p class="text-gray-500 text-xs">
Lorem ipsum dolor sit amet, coer adig elit. Aliam arco autem det dolm does, eaue est erci, exbo fugit
iste maam magni nesnt nulla pedis, siue tera toam vitae votum tatum fugit nest iste erci elit eaue arco
maam toam vitae.
</p>
<div class="flex bg-green-100 items-center rounded-full mt-6 mb-4">
<a href="" class="block relative">
<img class="h-10 w-10 rounded-full overflow-hidden mx-auto" src="./Photo/avataaars.png" alt="">
</a>
<div class="flex flex-col ml-2 justify-between">
<span class="text-sm text-green-500 font-semibold">Luna Marion</span>
<span class="text-xs flex items-center">Member, Gold VIP</span>
</div>
</div>
</div>
<div class="shadow-xl bg-white rounded-xl p-4 ss:px-8 sm:px-12 md:px-6">
<p class="text-gray-500 text-xs">
Lorem ipsum dolor sit amet, coer adig elit. Aliam arco autem det dolm does, eaue est erci, exbo fugit
iste maam magni nesnt nulla pedis, siue tera toam vitae votum tatum fugit nest iste erci elit eaue arco
maam toam vitae.
</p>
<div class="flex bg-green-100 items-center rounded-full mt-6 mb-4">
<a href="" class="block relative">
<img class="h-10 w-10 rounded-full overflow-hidden mx-auto" src="./Photo/avataaars.png" alt="">
</a>
<div class="flex flex-col ml-2 justify-between">
<span class="text-sm text-green-500 font-semibold">Luna Marion</span>
<span class="text-xs flex items-center">Member, Gold VIP</span>
</div>
</div>
</div>
</div>
</div>
<!--review card-->
<!--textarea-->
<div class="mt-5 flex justify-center p-10">
<h2 class="sm:text-3xl text-gray-500 mb-2 ss:text-xl">Contact Us</h2>
</div>
<!--textarea-->
<!--form area-->
<div class="mt-5 flex p-10 justify-center items-center"
style="background-image: linear-gradient( 109.6deg, rgba(24,138,141,1) 11.2%, rgba(96,221,142,1) 91.1% );">
<form class="w-full max-w-screen-2xl">
<div class="md:flex mb-6 md:mb-3">
<div class="w-full md:w-1/2 px-3 mb-6 md:mb-3">
<label for="First_Name" class="block uppercase text-xs text-white font-bold mb-2 tracking-wider">First
Name</label>
<input type="text" id="First_Name"
class="text-gray-500 w-full block py-3 px-4 rounded border border-green-500">
</div>
<div class="w-full md:w-1/2 px-3 mb-6 md:mb-3">
<label for="Last_Name" class="block uppercase text-xs text-white font-bold mb-2 tracking-wider">Last
Name</label>
<input type="text" id="Last_Name"
class="text-gray-500 w-full block py-3 px-4 rounded border border-green-500">
</div>
</div>
<div class="flex mb-6 md:mb-3">
<div class="w-full px-3 md:mb-3">
<label for="E_mail" class="block uppercase text-xs text-white font-bold mb-2 tracking-wider">Your
Email</label>
<input placeholder="youremail@email.com" type="email" id="E_mail"
class="text-gray-500 w-full block py-3 px-4 rounded border border-green-500">
</div>
</div>
<div class="flex mb-6 md:mb-3">
<div class="w-full px-3 md:mb-3">
<label for="Text_Area" class="block uppercase text-xs text-white font-bold mb-2 tracking-wider">Send Message</label>
<textarea type="email" id="Text_Area" class="resize-none h-48 text-gray-500 w-full block py-3 px-4 rounded border border-green-500"></textarea>
</div>
</div>
<div>
<div class="flex items-center justify-center">
<button class="w-1/2 shadow bg-white text-green-500 py-2 px-6 rounded font-bold">Submit</button>
</div>
</div>
</form>
</div>
<!--form area-->
<!--footer area-->
<footer class="flex justify-center">
<div class="pt-40 px-4 max-w-screen-2xl">
<div class="container flex flex-col justify-between mx-auto space-y-8">
<a href="#" class="flex justify-center">
<div class="flex">
<img class="h-8 w-8 mr-2" src="./Photo/logo.png" alt="Logo Icon">
</div>
<span class="font-semibold text-gray-500 text-2xl">Prime House</span>
</a>
<div class="grid grid-cols-2 gap-x-3 gap-y-8 md:gap-x-6 lg:gap-x-14 sm:grid-cols-4">
<div class="space-y-3">
<h3 class="footer-title">Product</h3>
<ul class="space-y-1">
<li>
<a href="">FAQ</a>
</li>
<li>
<a href="">Pricing</a>
</li>
<li>
<a href="">Features</a>
</li>
</ul>
</div>
<div class="space-y-3">
<h3 class="footer-title">Company</h3>
<ul class="space-y-1">
<li>
<a href="">Privacy</a>
</li>
<li>
<a href="">Terms Of Service</a>
</li>
</ul>
</div>
<div class="space-y-3">
<h3 class="footer-title">Developers</h3>
<ul class="space-y-1">
<li>
<a href="">Guides</a>
</li>
<li>
<a href="">Public API</a>
</li>
<li>
<a href="">Documentation</a>
</li>
</ul>
</div>
<div class="space-y-3">
<h3 class="footer-title">Social Media</h3>
<div class="flex justify-start space-x-3">
<a href="">
<i class="fa-brands fa-facebook-square fa-2xl text-green-500"></i>
</a>
<a href="" class="">
<i class="fa-brands fa-twitter-square fa-2xl text-green-500"></i>
</a>
<a href="">
<i class="fa-brands fa-instagram-square fa-2xl text-green-500"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!--footer area-->
<!--end-->
<div class="py-6 text-center text-green-500 font-semibold mt-10 border-t-2">
2022 Prime House Website
</div>
<!--end-->
<script type="module" src="/main.js"></script>
</body>
</html>