-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
622 lines (601 loc) · 27.9 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
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
/>
<link
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<!-- Style.css -->
<link rel="stylesheet" href="style.css" />
<!-- Aos -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<title>Booking online</title>
</head>
<body>
<!-- Navbar -->
<div class="whole-body">
<nav id="navbar" class="navbar navbar-expand-lg navbar-light">
<div class="logo-head">
<h2 id="logo">< Rumah Nenek /></h2>
</div>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="./index.html"
>Home <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item active">
<a class="nav-link" href="./page2.html"
>About <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item active">
<a class="nav-link" href="list-villa.html"
>Product <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item active">
<a class="nav-link" href="./team.html"
>Team <span class="sr-only">(current)</span></a
>
</li>
<li id='contact' class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Contact
</a>
<div
class="dropdown-menu"
aria-labelledby="navbarDropdown"
>
<a
class="dropdown-item"
href="https://web.facebook.com/"
>Facebook</a
>
<a
class="dropdown-item"
href="https://github.com/Yonkou2020"
>Github</a
>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="https://twitter.com/"
>Twitter</a
>
</div>
</li>
</ul>
<button id="signIn" type="button" class="btn btn-primary">
<a id="white" href="login.html">Sign In</a>
</button>
<button id="signUp" type="button" class="btn btn-success">
<a id="white" href="signup.html">Sign Up</a>
</button>
</div>
</nav>
</div>
<!-- Jumbotron -->
<div id="jumbotron" class="jumbotron jumbotron-fluid">
<div id="container-jumbotron" class="container">
<div id="text-jumbotron">
<h1 style="color: rgb(252, 252, 252);" class="display-4">Booking Villa</h1>
<p style="color: rgb(252, 252, 252);" class="lead">Sewa villa senyaman rumah Nenek!</p>
</div>
<!-- form -->
<div id="two-jumbotron">
<div id="container-form-search" class="container">
<form id="searching">
<legend>Pencarian:</legend>
<label for="loc">
Nama Lokasi/Villa Tujuan
</label>
<div id="loc" class="input-group flex-nowrap">
<div class="input-group-prepend">
<span
class="input-group-text"
id="addon-wrapping"
>
<i
class="fa fa-map-marker"
aria-hidden="true"
></i
></span>
</div>
<input
type="text"
class="form-control"
placeholder="Villa Nenek"
aria-label="Username"
aria-describedby="addon-wrapping"
/>
</div>
<div class="two-slide">
<div class="form-group">
<label for="sel1"
><span
><i
class="fa fa-users"
aria-hidden="true"
></i
></span>
Jumlah Tamu:
</label>
<select class="form-control" id="sel1">
<option>1 Tamu</option>
<option>2 Tamu</option>
<option>3 Tamu</option>
<option>4 Tamu</option>
<option>5 Tamu</option>
<option>6 Tamu</option>
<option>7 Tamu</option>
<option>8 Tamu</option>
<option>9 Tamu</option>
<option>10 Tamu</option>
<option>11 Tamu</option>
<option>12 Tamu</option>
<option>13 Tamu</option>
<option>14 Tamu</option>
<option>15 Tamu</option>
<option>16 Tamu</option>
</select>
</div>
<!-- section2 -->
<div class="form-group">
<label for="sel2"
><span
><i
class="fa fa-bed"
aria-hidden="true"
></i>
</span>
Jumlah Kamar:</label
>
<select class="form-control" id="sel2">
<option>1 Kamar</option>
<option>2 Kamar</option>
<option>3 Kamar</option>
<option>4 Kamar</option>
<option>5 Kamar</option>
<option>6 Kamar</option>
<option>7 Kamar</option>
<option>8 Kamar</option>
<option>9 Kamar</option>
<option>10 Kamar</option>
<option>11 Kamar</option>
<option>12 Kamar</option>
<option>13 Kamar</option>
<option>14 Kamar</option>
<option>15 Kamar</option>
</select>
</div>
</div>
<!-- section3 -->
<a
id="btn-transparant"
class="btn btn-primary btn-lg active"
role="button"
aria-pressed="true"
><span
><i
class="fa fa-search"
aria-hidden="true"
></i> </span
>Search</a
>
</form>
</div>
</div>
<!-- search batas -->
</div>
</div>
<!-- Section 1 -->
<section data-aos="fade-left" class="section-1">
<h2>Villa Terbaru</h2>
<p>
Setiap Minggunya kami berusaha menawarkan villa terbaru dengan
kualitas setara rumah nenek
</p>
<div class="image-new-villa">
<div
id="carouselExampleCaptions"
class="carousel slide"
data-ride="carousel"
>
<ol class="carousel-indicators">
<li
data-target="#carouselExampleCaptions"
data-slide-to="0"
class="active"
></li>
<li
data-target="#carouselExampleCaptions"
data-slide-to="1"
></li>
<li
data-target="#carouselExampleCaptions"
data-slide-to="2"
></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="/assets/img/bg1.jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>Villa Ubud</h5>
<p>
Nulla vitae elit libero, a pharetra augue
mollis interdum.
</p>
</div>
</div>
<div class="carousel-item">
<img
src="/assets/img/bg3.jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>Villa Griya Kusuma</h5>
<p>
Lorem ipsum dolor sit amet, consectetur
adipiscing elit.
</p>
</div>
</div>
<div class="carousel-item">
<img
src="./assets/img/bg1.jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>Ubud cluster</h5>
<p>
Praesent commodo cursus magna, vel
scelerisque nisl consectetur.
</p>
</div>
</div>
</div>
<a
class="carousel-control-prev"
href="#carouselExampleCaptions"
role="button"
data-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="sr-only">Previous</span>
</a>
<a
class="carousel-control-next"
href="#carouselExampleCaptions"
role="button"
data-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section>
<!-- Section 2 -->
<section data-aos="fade-right" class="section-2 container">
<div class="text-section-2">
<h2>Daftar Layanan</h2>
<p>
Kami menyediakan layanan tambahan sesuai kebutuhan pelanggan
</p>
</div>
<div id="card-group" class="card-group">
<div class="card">
<img
src="./assets/img/profesional.jpg"
class="card-img-top"
alt="ART"
/>
<div class="card-body">
<h5 class="card-title">Cleaning Service</h5>
<p class="card-text">
Kami menyediakan cleaning Service profesional dan
juga Babysitter. Untuk kenyamanan liburan anda.
</p>
</div>
<div class="card-footer">
<small class="text-muted"
>Last updated 3 mins ago</small
>
</div>
</div>
<div class="card">
<img
src="./assets/img/delman.jpg"
class="card-img-top"
alt="Delman"
/>
<div class="card-body">
<h5 class="card-title">Delman</h5>
<p class="card-text">
Kami menyediakan jasa delman sesuai keinginan anda.
agar liburan anda ingin lebih berkesan.
</p>
</div>
<div class="card-footer">
<small class="text-muted"
>Last updated 2 days ago</small
>
</div>
</div>
<div class="card">
<img
src="./assets/img/bbq2.jpg"
class="card-img-top"
alt="Barbeque"
/>
<div class="card-body">
<h5 class="card-title">Barbeque</h5>
<p class="card-text">
Barbeque sendiri bisa anda request dengan ketentuan
bahan-bahannya saja atau dengan koki profesional
yang sudah bekerja sama dengan kami.
</p>
</div>
<div class="card-footer">
<small class="text-muted"
>Last updated 1 month ago</small
>
</div>
</div>
</div>
</section>
<!-- section 3 -->
<section class="section-3-0 container">
<h2 id="head-h2">Kenapa Rumah Nenek ?</h2>
<div class="hobby">
<div data-aos="fade-right" class="image-why">
<img id="why-rumah-nenek" src="/assets/img/dompet2.jpg" />
</div>
<p id="justify" data-aos="fade-left">
karena rumah nenek telah bekerja sama dengan lebih dari 30
perusahaan dompet digital diantaranya ovo dan pay pro, kami
berkomitmen untuk memudahkan setiap customer kita dalam
melakukan transaksi jadi tidak ada lagi kata sulitnya
transaksi, karena kami sudah hampir sepenuhnya bekerja sama
dengan perusahaan dompet digital yang ada di seluruh
indonesia bahkan dunia sepert paypal dll. Lorem ipsum dolor,
sit amet consectetur adipisicing elit. Beatae corporis iure
vel voluptatum ut, ea, dolorem labore, placeat laudantium
reprehenderit qui laborum porro voluptatibus. Nulla iusto
repellat dolor ipsa iure.
</p>
</div>
<div id="hobby2" class="hobby">
<p id="justify" data-aos="fade-right">
Discount yang tepat sasaran tentu saja merupakan kelebihan
kami, seperti fase setelah pandemi ini kami berkomitmen
untuk membuat costumer senyaman mungkin dengan liburannya,
setelah 3 bulan kebelakang lumayan lelah dengan adanya
pandemi, semoga liburan ini bisa menenangkan hati dan
pikiran costumer kami. Lorem ipsum dolor sit amet
consectetur adipisicing elit. Perferendis voluptatem quas
cupiditate velit, dignissimos a recusandae commodi cumque
ipsam atque deserunt vitae at nulla nemo qui beatae
suscipit! Nostrum, expedita?
</p>
<div data-aos="fade-left" class="image-why">
<img id="why-rumah-nenek" src="./assets/img/discount.jpg" />
</div>
</div>
<div id="hobby3" class="hobby">
<div data-aos="fade-right" class="image-why">
<img id="why-rumah-nenek" src="/assets/img/ASEAN.jpg" />
</div>
<p id="justify" data-aos="fade-left">
Kualitas tentu saja sudah tidak ada duanya, dengan
perollehan medaly best quality start up terbaik se asia pada
tahun 2020 bulan agustus dan desember telah menjadikan kami
startup yang paling banyak di gandrungi oleh customer yang
pergi untuk mempersiapkan tempat liburannya. Lorem ipsum
dolor sit amet consectetur, adipisicing elit. Sed, fugit
minus, a provident voluptatum dicta expedita architecto amet
delectus officiis quisquam qui recusandae, natus laborum
unde quo voluptates quas esse.
</p>
</div>
<!-- review -->
<div id="hobby2" class="hobby">
<p id="justify" data-aos="fade-right">
Platform kami terbuka untuk di review oleh semua kalangan dabn menerima kritik dan saran, Lorem ipsum, dolor sit amet consectetur adipisicing elit. Dolores fuga ipsum deleniti aperiam expedita corporis? Recusandae eum rerum officia minus aspernatur, odio molestias molestiae, veritatis saepe doloribus ad animi corporis.
</p>
<div data-aos="fade-left" class="image-why">
<img id="why-rumah-nenek" src="/assets/img/review.png" />
</div>
</div>
</section>
</section>
<!-- section3-1 -->
<section data-aos="fade-up" class="section-3">
<h2>Daftar Villa</h2>
<p>
Villa kami ada di seluruh indonesia dengan total
<strong>879 villa</strong>
dan akan terus bertambah
</p>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d32658820.434342183!2d99.42306746454233!3d-2.275424060882326!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2c4c07d7496404b7%3A0xe37b4de71badf485!2sIndonesia!5e0!3m2!1sid!2sid!4v1593066137340!5m2!1sid!2sid"
width="600"
height="450"
frameborder="0"
style="border: 0;"
allowfullscreen=""
aria-hidden="false"
tabindex="0"
></iframe>
</section>
<!-- Section-4 -->
<section data-aos="fade-up" class="section-4">
<h2>Daftar menjadi rekan</h2>
<p>
Kami juga terbuka kepada setiap indvidu/group yang ingin
bekerjasama.
</p>
<div class="partner-img">
<div class="image-wrap">
<img class="image" src="./assets/img/pt1.png" />
</div>
<div class="image-wrap">
<img class="image" src="./assets/img/pt2.png" />
</div>
<div class="image-wrap">
<img class="image" src="./assets/img/pt3.png" />
</div>
<div class="image-wrap">
<img class="image" src="./assets/img/pt4.png" />
</div>
</div>
<div class="partner-img">
<div class="image-wrap">
<img class="image" src="./assets/img/pt5.png" />
</div>
<div class="image-wrap">
<img class="image" src="./assets/img/pt6.png" />
</div>
<div class="image-wrap">
<img class="image" src="./assets/img/pt7.png" />
</div>
<div class="image-wrap">
<img class="image" src="./assets/img/pt8.jpg" />
</div>
</div>
<form id="form-mitra" class="form-inline my-2 my-lg-0">
<button id="button-group" type="button" class="btn btn-primary">
<a id="white" href="./signup.html"
>Daftar Mitra group</a
></button>
<button id="button-individu" type="button" class="btn btn-success">
<a id="white" href="signup.html">Daftar mitra Individu</a>
</button>
</form>
</section>
<!-- Footer -->
<footer class="footer-distributed">
<div class="footer-left">
<h3>< Rumah<span>Nenek</span>/></h3>
<p class="footer-links">
<a href="#">Home -</a>
<a href="#">About -</a>
<a href="#">Product -</a>
<a href="#">Contact</a>
</p>
<p class="footer-company-name">
RumahNenek © 2020, Impact Byte
</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p>
<span>28 Ujung Harapan Street</span> Bekasi, Indonesia
</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>+62 999 1148563</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p>
<a href="mailto:[email protected]"
>
</p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About the company</span>
RumahNenek.com merupakan bagian dari Booking Santuy Inc.,
perusahaan terkemuka di dunia untuk Booking villa online
anda & layanan terkait lainnya.
</p>
<div class="footer-icons">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-github"></i></a>
</div>
</div>
</footer>
<script src="./js/index.js"></script>
<!-- Footer -->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<!-- aos js -->
<script src="welcome.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 1300,
});
</script>
<!-- bootstrap -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"
></script>
<script src="./js/login.js"></script>
</body>
</html>