-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
607 lines (446 loc) · 19.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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rinterio</title>
<link rel="shortcut icon" href="./assets/article1.png" type="image/x-icon">
<!-- tailwincss CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- daisyUI CDN -->
<link
href="https://cdn.jsdelivr.net/npm/daisyui@4.12.10/dist/full.min.css"
rel="stylesheet"
type="text/css"
/>
<script src="https://cdn.tailwindcss.com"></script>
<!-- font awsome CDN -->
<script
src="https://kit.fontawesome.com/5ed6c11ac4.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header class="container mx-auto">
<!-- Navbar -->
<nav>
<div class="navbar bg-base-100">
<div class="navbar-start">
<h2 class="text-3xl">
<i
class="fa-solid -rotate-45 p-3 fa-arrow-right text-black bg-green-500 rounded-full font-bold"
></i>
Rinterio
</h2>
</div>
<div class="navbar-center hidden lg:flex">
<ul class="menu menu-horizontal px-1">
<li><a>Home </a></li>
<li><a>Services</a></li>
<li><a>Portfolio</a></li>
<li><a>Blogs</a></li>
<li><a>Contact Us</a></li>
</ul>
</div>
<div class="navbar-end dropdown-end">
<div class="flex md:block hidden">
<i class="fa-brands fa-searchengin p-2 border-2 border-sky-500 rounded-full "></i>
<i class="fa-solid fa-cart-shopping bg-white border-dotted border-2 border-sky-500 rounded-full p-2"></i>
</div>
<div class="dropdown">
<div tabindex="0" role="button" class="btn btn-ghost lg:hidden">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 6h16M4 12h8m-8 6h16"
/>
</svg>
</div>
<ul
tabindex="0"
class="menu menu-sm dropdown-content bg-base-100 rounded-box z-[1] mt-3 w-52 shadow"
>
<li><a>Home </a></li>
<li><a>Services</a></li>
<li><a>Portfolio</a></li>
<li><a>Blogs</a></li>
<li><a>Contact Us</a></li>
</ul>
</div>
</div>
<a class="btn btn bg-green-400 hidden lg:inline-flex" href=""><p>Book Consult <p><i
class="fa-solid p-1 -rotate-45 fa-arrow-right text-white bg-gray-700 rounded-full font-bold"
></i></p> </p></a>
</div>
</nav>
<!-- Header Section -->
<section >
<!-- Header Images -->
<img class="mx-auto" src="./assets/banner.png" alt="">
<div class="text-center mt-4">
<h1 class="lg:text-7xl text-4xl">A barn house of this design has a <br> striking appearance</h1>
<br>
<p class="lg:text-2xl text-1 ">The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents, and large windows that flood the space with natural light.</p>
<br>
<button class="btn bg-green-400">View Details <i
class="fa-solid p-1 -rotate-45 fa-arrow-right text-white bg-gray-700 rounded-full font-bold"
></i></button>
</div>
</section>
</header>
<br>
<main>
<!-- thoughtful, liveable -->
<section class="bg-base-200 ">
<div class="mx-auto container">
<img src="./assets/Vector.png" alt="">
<div class="card lg:card-side ">
<div class="card-body">
<h2 class="bg-white rounded-2xl p-4 w-48 ">About Us <i
class="fa-solid p-1 fa-arrow-right text-white bg-gray-700 rounded-full font-bold"
></i> </h2>
<h2 class="card-title text-5xl">We design thoughtful, <br> liveable spaces</h2>
<p>The barn house captivates with its blend of rustic charm and
modern sophistication, featuring weathered wood, sleek metal accents.</p>
<div class="md:grid-cols-2 grid lg:grid-cols-1 lg:space-y-7">
<!-- Commercial -->
<div class=" border rounded-lg p-3 flex space-x-10">
<img src="./assets/residential.png" alt="">
<!-- text -->
<div class="">
<h2 class="text-2xl">Commercial</h2>
<p>The barn house captivates with its blend of rustic charm and modern.</p>
</div>
</div>
<!-- Commercial -->
<div class=" border rounded-lg p-3 lg:space-x-10 flex">
<img src="./assets/commercial.png" alt="">
<!-- text -->
<div class="">
<h2 class="text-2xl">Residential</h2>
<p>The captivates with its blend of music rustic charm and modern.</p>
</div>
</div>
</div>
</div>
<figure>
<img
src="./assets/Rectangle.png"
alt="Album" />
</figure>
</div>
</div>
<!-- Happy Client Review -->
<section>
<div class="mx-auto container mt-28 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 ">
<div class=" bg-base-100 shadow-xl">
<div class="card-body items-center text-center">
<i class="fa-regular text-4xl fa-message"></i>
<h1 class="text-5xl">235+</h1>
<p>Happy Client Review</p>
</div>
</div>
<div class=" bg-base-100 shadow-xl">
<div class="card-body items-center text-center">
<i class="fa-regular text-4xl fa-user"></i>
<h1 class="text-5xl">50+</h1>
<p>Work Departments</p>
</div>
</div>
<div class=" bg-base-100 shadow-xl">
<div class="card-body items-center text-center">
<i class="fa-solid text-4xl fa-house"></i>
<h1 class="text-5xl">305+</h1>
<p>Happy House Review</p>
</div>
</div>
<div class=" bg-base-100 shadow-xl">
<div class="card-body items-center text-center">
<i class="fa-solid text-4xl fa-cart-shopping"></i>
<h1 class="text-5xl">500+</h1>
<p>Shoping Cart</p>
</div>
</div>
</div>
</section>
<!-- Our Works Process -->
<section class="mx-auto container">
<!-- text -->
<div class="text-center mt-20">
<button class="bg-white p-3 text-xl rounded-xl">How we works <i
class="fa-solid fa-arrow-right text-white bg-gray-700 rounded-full font-bold"
></i></button>
<h1 class="text-6xl ">Our Works Process</h1>
<p class="mt-3">The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.</p>
</div>
<br>
<!-- Card -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-5 ">
<div class=" bg-base-100 bg-rose-600 rounded-md shadow-xl">
<div class="card-body items-start ">
<img src="./assets/vision.png" alt="">
<h2 class="text-2xl">Concept</h2>
<p>The Concept captivates with and song per pagenation its blend of rustic charm and modern.</p>
</div>
</div>
<div class=" bg-base-100 bg-yellow-600 rounded-md shadow-xl">
<div class="card-body items-start ">
<img src="./assets/budget-planning.png" alt="">
<h2 class="text-2xl">Budget Planning</h2>
<p>The Budget Planning full Process of rustic charm and modern.</p>
</div>
</div>
<div class=" bg-base-100 bg-green-400 rounded-md shadow-xl">
<div class="card-body items-start ">
<img src="./assets/flow-chart.png" alt="">
<h2 class="text-2xl">Design Process</h2>
<p>The barn Design Process blend of rustic charm and modern.</p>
</div>
</div>
<div class=" bg-base-100 bg-orange-400 rounded-md shadow-xl">
<div class="card-body items-start ">
<img src="./assets/vision.png" alt="">
<h2 class="text-2xl">Supervision</h2>
<p>The barn house captivates with its Supervision.</p>
</div>
</div>
</div>
</section>
</section>
<!-- Our Works Process END -->
<!-- Our Latest Portfolio -->
<section class="container mx-auto ">
<!-- Text -->
<div class="text-center mt-10 space-y-4">
<button class="bg-green-300 rounded-xl p-3"><i
class="fa-solid fa-arrow-right text-black text-xl rounded-full font-bold"
></i> Explore our Latest works</button>
<h2 class="text-5xl">Our Latest Portfolio</h2>
<p>The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.</p>
</div>
<!-- main card section cols -->
<div class="mt-10">
<!-- grid - 1 -->
<div class="grid grid-cols-12 gap-2 ">
<div class="lg:col-span-8 md:col-span-12 col-span-12 p-5 rounded-3xl mx-auto border md:flex shadow-xl ">
<img class=" mx-auto lg:w-auto w-full " src="./assets/img1.png" alt="">
<!-- text -->
<div class="ml-5 md:text-start text-center space-y-4 ">
<h1 class="text-2xl">Commercial</h1>
<p>Watch on Deadline Jeremy Garelick (Murder Mystery 2) has written and will direct the pic through his company American High.</p>
<button class="bg-green-400 p-2 rounded-xl">View Details <i
class="fa-solid p-1 fa-arrow-right -rotate-45 text-white bg-gray-700 rounded-full font-bold"
></i></button>
</div>
</div>
<div class="lg:col-span-4 mx-auto md:col-span-6 rounded-3xl col-span-12 border flex shadow-xl w-full p-5 ">
<img class="w-full" src="./assets/img2.png" alt="">
</div>
<div class="lg:col-span-3 mx-auto col-span-12 md:col-span-6 rounded-3xl border p-5 w-full shadow-xl ">
<img class="w-full lg:h-full" src="./assets/img3.png" alt="">
</div>
<div class="lg:col-span-6 md:text-start md:col-span-12 p-5 rounded-3xl col-span-12 border md:flex shadow-xl ">
<img class="mx-auto w-full" src="./assets/img4.png" alt="">
<!-- text -->
<div class="ml-5 md:text-start text-center space-y-4">
<h1 class="text-2xl">Recomend </h1>
<p>Saideer is Recomended Shoping The barn house captivates with its blend of rustic charm and modern .</p>
<button class="bg-green-400 p-2 rounded-xl">View Details <i
class="fa-solid p-1 fa-arrow-right -rotate-45 text-white bg-gray-700 rounded-full font-bold"
></i></button>
</div>
</div>
<div class="lg:col-span-3 md:col-span-6 mx-auto rounded-3xl col-span-12 border p-5 w-full shadow-xl ">
<img class="w-full lg:h-full" src="./assets/img5.png" alt="">
</div>
<div class="lg:hidden md:col-span-6 mx-auto rounded-3xl col-span-12 border p-5 w-full shadow-xl ">
<img class="w-full h-full" src="./assets/img2.png" alt="">
</div>
</div>
</section>
<!-- Read Our Articles and News -->
<section class="bg-base-200">
<section class="mx-auto container mt-10 p-10 ">
<!-- text -->
<div class="text-center">
<button class="text-2xl">Rinterio News</button>
<h1 class="text-4xl">Read Our Articles and News</h1>
<p> House captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.</p>
</div>
<div class="grid lg:grid-cols-12 grid-cols-12 gap-4 mt-5 ">
<div class=" border shadow-lg lg:col-span-4 p-3 col-span-12 md:space-x-4 rounded-xl grid lg:grid-cols-1 md:grid-cols-2 grid-cols-1 ">
<img class="m-auto p-5 w-full" src="./assets/article1.png" alt="">
<div class="m-auto">
<div class="flex space-x-4">
<p><i class="fa-solid fa-calendar-days"></i> July 14 2024</p>
<p><i class="fa-solid fa-user"></i> Admin</p>
</div>
<h1 class="text-xl font-bold"> Right of your home to choose the furniture</h1>
<p> Captivates with its blend of rustic charm and modern. </p>
<button class="bg-green-600 p-2 rounded-xl">Read More <i
class="fa-solid p-1 fa-arrow-right -rotate-45 text-white rounded-full font-bold"
></i></button>
</div>
</div>
<div class=" border shadow-lg lg:col-span-4 p-3 col-span-12 md:space-x-4 rounded-xl grid lg:grid-cols-1 md:grid-cols-2 grid-cols-1 ">
<img class="m-auto p-5 w-full" src="./assets/article2.png" alt="">
<div class="m-auto">
<div class="flex space-x-4">
<p><i class="fa-solid fa-calendar-days"></i> July 14 2024</p>
<p><i class="fa-solid fa-user"></i> Admin</p>
</div>
<h1 class="text-xl font-bold"> Choose the furniture right of your home.</h1>
<p> Its blend aptivates of rustic charm and modern. </p>
<button class="bg-green-600 p-2 rounded-xl">Read More <i
class="fa-solid p-1 fa-arrow-right -rotate-45 text-white rounded-full font-bold"
></i></button>
</div>
</div>
<div class=" border shadow-lg lg:col-span-4 p-3 col-span-12 md:space-x-4 rounded-xl grid lg:grid-cols-1 md:grid-cols-2 grid-cols-1 ">
<img class="m-auto p-5 w-full" src="./assets/article3.png" alt="">
<div class="m-auto">
<div class="flex space-x-4">
<p><i class="fa-solid fa-calendar-days"></i> July 14 2024</p>
<p><i class="fa-solid fa-user"></i> Admin</p>
</div>
<h1 class="text-xl font-bold"> The furniture right of your home.</h1>
<p>The barn house captivates with its blend of rustic charm and modern. </p>
<button class="bg-green-600 p-2 rounded-xl">Read More <i
class="fa-solid p-1 fa-arrow-right -rotate-45 text-white rounded-full font-bold"
></i></button>
</div>
</div>
</div>
</section></section>
<!-- my section -->
<section>
<!-- Main is title -->
<div class="text-center mt-5 ">
<h1 class="text-3xl">Users</h1>
<p class="text-xl mt-2">This is product is my opencallege</p>
</div>
<div class="mt-4">
<div class="container mx-auto gap-5 grid grid-cols-12">
<!-- Card 1 -->
<div class=" skeleton lg:col-span-4 md:col-span-6 col-span-12 flex gap-4 p-4">
<div class="avatar online ">
<div class="w-24 rounded-full ">
<img src="./assets/man.jpeg" />
</div>
</div>
<div class="">
<h1 class="text-lg">Name : Saidee Hasan</h1>
<p>Email:mds@gmail.com</p>
<p>Progarming-hero</p>
<div class="rating">
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" checked="checked" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
</div>
</div>
</div>
<!-- Card 1 -->
<div class=" skeleton lg:col-span-4 md:col-span-6 col-span-12 flex gap-4 p-4">
<div class="avatar online ">
<div class="w-24 rounded-full ">
<img src="./assets/gril.jpeg" />
</div>
</div>
<div class="">
<h1 class="text-lg">Name : Hasan</h1>
<p>Email:mdsai@gmail.com</p>
<p>Progarming-hero</p>
<div class="rating">
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" checked="checked" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
</div>
</div>
</div>
<!-- Card 1 -->
<div class=" skeleton lg:col-span-4 md:col-span-6 col-span-12 flex gap-4 p-4">
<div class="avatar online ">
<div class="w-24 rounded-full ">
<img src="./assets/gril-2.jpeg" />
</div>
</div>
<div class="">
<h1 class="text-lg">Name : Rakib</h1>
<p>Email:mdsaideh@gmail.com</p>
<p>Progarming-hero</p>
<div class="rating">
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" checked="checked" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
<input type="radio" name="rating-4" class="mask mask-star-2 bg-green-500" />
</div>
</div>
</div>
</div>
</section>
<!-- Read Our Articles and News End-->
<section class="mt-10 ">
<div
class="hero min-h-screen"
style="background-image: url(./assets/bg.jpg);">
<div class="container mx-auto text-center p-2">
<div class="space-y-5">
<button class="bg-orange-500 p-2 rounded-lg">Let’s Connect <i
class="fa-solid p-1 fa-arrow-right text-white rounded-full font-bold"
></i> </button>
<h1 class="mb-5 text-5xl font-bold">Let’s Discuss Next Project</h1>
<p>The of house bonedele barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.</p>
<div class="grid grid-cols-12 gap-3">
<input class="md:col-span-6 col-span-12 h-12 rounded-lg p-6" type="text" placeholder="First Name*">
<input class="md:col-span-6 col-span-12 h-12 rounded-lg p-6 " type="text" placeholder="Last Name">
<input class="md:col-span-6 col-span-12 h-12 rounded-lg p-6" type="text" placeholder="Phone Number">
<input class="md:col-span-6 col-span-12 h-12 rounded-lg p-6 " type="text" placeholder="Email Number">
<input class="md:col-span-12 col-span-12 h-48 rounded-lg p-6 " type="text" placeholder="Write your message here">
<button class="col-span-12 bg-orange-500 rounded-lg h-10 "> Submit <i
class="fa-solid p-1 fa-arrow-right -rotate-45 text-white rounded-full font-bold"
></i> </button>
</div>
</div>
</div>
</div>
</section>
<!-- services section -->
</main>
<footer class="bg-black p-10 ">
<section class="mx-auto container text-white">
<!-- footer text -->
<div class="text-center space-y-5">
<h1 class="text-2xl">Rinterio <i
class="fa-solid p-1 fa-arrow-right -rotate-45 text-white bg-lime-600 rounded-full font-bold"
></i></h1>
<p>The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.</p>
</div>
<!-- nav link -->
<div class="text-center mt-20">
<ul class="md:flex justify-center text-gray-300 gap-24">
<li>Home</li>
<li>About</li>
<li>Contact</li>
<li>Services</li>
</ul>
<button class="text-2xl mt-10 bg-green-600 rounded-lg p-2">Book Consult <i
class="fa-solid p-1 fa-arrow-right -rotate-45 text-white bg-lime-600 rounded-full font-bold"
></i></button>
</div>
</section>
</footer>
</body>
</html>