-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
739 lines (652 loc) · 25.3 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
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Event </title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
/>
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" />
<style>
.gradient-custom-2 {
/* fallback for old browsers */
background: #fccb90;
/* Chrome 10-25, Safari 5.1-6 */
background: -webkit-linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
}
@media (min-width: 768px) {
.gradient-form {
height: 100vh !important;
}
}
@media (min-width: 769px) {
.gradient-custom-2 {
border-top-right-radius: .3rem;
border-bottom-right-radius: .3rem;
}
}
@import url(https://fonts.googleapis.com/css?family=Raleway);
body {
background-color: #eee;
min-height: 100%;
color: #fff;
background-size: cover;
background-position: center;
font-family: Raleway, sans-serif;
}
#title {
position: fixed;
top: 10px;
left: 10px;
font-size: 20px;
letter-spacing: 0.1em;
z-index: 100;
color: #fff;
}
</style>
</head>
<body>
<!-- Start your project here-->
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top navbar-scroll">
<!-- Container wrapper -->
<div class="container-fluid">
<!-- Navbar brand -->
<a class="navbar-brand" href="#"><img src="https://mdbootstrap.com/img/Photos/new-templates/bootstrap-login-form/lotus.png" width="90px" alt=""></a>
<!-- Toggle button -->
<button
class="navbar-toggler"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<i class="fas fa-bars"></i>
</button>
<!-- Collapsible wrapper -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- Left links -->
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<!-- Navbar dropdown -->
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-mdb-toggle="dropdown"
aria-expanded="false"
>
Events
</a>
<!-- Dropdown menu -->
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li>
<a class="dropdown-item" data-scrollto="#card" href="#card">Past Events</a>
</li>
<li>
<a class="dropdown-item" data-scrollto="#upcoming" href="#upcoming">Upcoming Events</a>
</li>
<li><hr class="dropdown-divider" /></li>
<li>
<a class="dropdown-item" data-scrollto="#register" href="#register">Register your event</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="index3.html">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index4.html">Contact us</a>
</li>
</ul>
<div class="mx-2">
<button type="button" class="btn btn-primary" data-mdb-toggle="modal" data-mdb-target="#loginModal">Login
</button>
<button type="button" class="btn btn-primary" data-mdb-toggle="modal" data-mdb-target="#signupModal">Sign up
</button>
</div>
<!-- Left links -->
</div>
<!-- Collapsible wrapper -->
</div>
<!-- Container wrapper -->
</nav>
<!-- Navbar ends -->
<!--crousel starts-->
<div
id="carouselExampleCrossfade"
class="carousel slide carousel-fade"
data-mdb-ride="carousel"
>
<div class="carousel-indicators">
<button
type="button"
data-mdb-target="#carouselExampleCrossfade"
data-mdb-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-mdb-target="#carouselExampleCrossfade"
data-mdb-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-mdb-target="#carouselExampleCrossfade"
data-mdb-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="https://source.unsplash.com/1600x700/?event,management"
class="d-block w-100"
alt="..."
/>
<div class="mask text-white" style="background-color: rgba(0, 0, 0, 0.6)">
<div class=" carousel-caption d-none d-md-block align-items-center text-center">
<div>
<h1 class="mb-5">We Plan Your Events</h1>
<h4>
We plan your whole party or any kind of program like Wedding Birthday House warming and many more We provide the best quality of accessories and give our best
</h4>
<a class="btn btn-outline-success btn-rounded" data-scrollto="#card" href="#card" data-mdb-ripple-color="dark">
Start Now
</a>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<img
src="https://source.unsplash.com/1600x700/?event,celebration"
class="d-block w-100"
alt="..."
/>
<div class="mask text-white" style="background-color: rgba(0, 0, 0, 0.6)">
<div class=" carousel-caption d-none d-md-block align-items-center text-center">
<div>
<h1 class="mb-5">We Plan Your Birthday</h1>
<h4>
We plan your whole party or any kind of program like Wedding Birthday House warming and many more We provide the best quality of accessories and give our best
</h4>
<a class="btn btn-outline-success btn-rounded" data-scrollto="#card" href="#card" data-mdb-ripple-color="dark">
Start Now
</a>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<img
src="https://source.unsplash.com/1600x700/?party,gathering"
class="d-block w-100"
alt="..."
/>
<div class="mask text-white" style="background-color: rgba(0, 0, 0, 0.6)">
<div class=" carousel-caption d-none d-md-block align-items-center text-center">
<h1 class="mb-5">We Plan Your Wedding</h1>
<h4>
We plan your whole party or any kind of program like Wedding Birthday House warming and many more We provide the best quality of accessories and give our best
</h4>
<a class="btn btn-outline-success btn-rounded" data-scrollto="#card" href="#card" data-mdb-ripple-color="dark">
Start Now
</a>
</div>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-mdb-target="#carouselExampleCrossfade"
data-mdb-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-mdb-target="#carouselExampleCrossfade"
data-mdb-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!--controls of crousel ends-->
<!--login form through moddle-->
<div
class="modal fade"
id="loginModal"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel" style="color: black;">Login to your account</h5>
<button
type="button"
class="btn-close"
data-mdb-dismiss="modal"
aria-label="Close"
></button>
</div>
<section class="vh-100" style="background-color: #9A616D;">
<div class="container py-5 h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col col-xl-10">
<div class="card" style="border-radius: 1rem;">
<div class="row g-0">
<div class="col-md-6 col-lg-5 d-none d-md-block">
<img
src="https://mdbootstrap.com/img/Photos/new-templates/bootstrap-login-form/img1.jpg"
alt="login form"
class="img-fluid" style="border-radius: 1rem 0 0 1rem;"
/>
</div>
<div class="col-md-6 col-lg-7 d-flex align-items-center">
<div class="card-body p-4 p-lg-5 text-black">
<form>
<div class="d-flex align-items-center mb-3 pb-1">
<span class="h1 fw-bold mb-0"><img src="https://mdbootstrap.com/img/Photos/new-templates/bootstrap-login-form/lotus.png" width="90px" alt=""></span>
<h3>Lotus Events</h3>
</div>
<h5 class="fw-normal mb-3 pb-3" style="letter-spacing: 1px;">Sign into your account</h5>
<div class="form-outline mb-4">
<input type="email" id="form2Example17" class="form-control form-control-lg" />
<label class="form-label" for="form2Example17">Email address</label>
</div>
<div class="form-outline mb-4">
<input type="password" id="form2Example27" class="form-control form-control-lg" />
<label class="form-label" for="form2Example27">Password</label>
</div>
<div class="pt-1 mb-4">
<button class="btn btn-dark btn-lg btn-block" type="button">Login</button>
</div>
<a class="small text-muted" href="#!">Forgot password?</a>
<p class="mb-5 pb-lg-2" style="color: #393f81;">Don't have an account? <a href="#signupModal" style="color: #393f81;" data-mdb-toggle="modal" data-mdb-target="#signupModal" >Register here</a></p>
<a href="#!" class="small text-muted">Terms of use.</a>
<a href="#!" class="small text-muted">Privacy policy</a>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<!--login form ends-->
<!--signup form starts-->
<div
class="modal fade"
id="signupModal"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel" style="color: black;">Sign up</h5>
<button
type="button"
class="btn-close"
data-mdb-dismiss="modal"
aria-label="Close"
></button>
</div>
<section class="vh-100" style="background-color: #9A616D;">
<div class="container py-5 h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col col-xl-10">
<div class="card" style="border-radius: 1rem;">
<div class="row g-0">
<div class="col-md-6 col-lg-5 d-none d-md-block">
<img
src="https://mdbootstrap.com/img/Photos/new-templates/bootstrap-login-form/img1.jpg"
alt="login form"
class="img-fluid" style="border-radius: 1rem 0 0 1rem;"
/>
</div>
<div class="col-md-6 col-lg-7 d-flex align-items-center">
<div class="card-body p-4 p-lg-5 text-black">
<form>
<div class="d-flex align-items-center mb-3 pb-1">
<span class="h1 fw-bold mb-0"><img src="https://mdbootstrap.com/img/Photos/new-templates/bootstrap-login-form/lotus.png" width="90px" alt=""></span>
<h3>Lotus Events</h3>
</div>
<h5 class="fw-normal mb-3 pb-3" style="letter-spacing: 1px;">Create your account</h5>
<div class="form-outline mb-4">
<input type="email" id="form2Example17" class="form-control form-control-lg" />
<label class="form-label" for="form2Example17">Email address</label>
</div>
<div class="form-outline mb-4">
<input type="password" id="form2Example27" class="form-control form-control-lg" />
<label class="form-label" for="form2Example27">Password</label>
</div>
<div class="form-outline mb-4">
<input type="password" id="form2Example27" class="form-control form-control-lg" />
<label class="form-label" for="form2Example27">Confirm Password</label>
</div>
<div class="pt-1 mb-4">
<button class="btn btn-dark btn-lg btn-block" type="button">Create account</button>
</div>
<a href="#!" class="small text-muted">Terms of use.</a>
<a href="#!" class="small text-muted">Privacy policy</a>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<!--signup form ends-->
<!--card starts-->
<div class="container my-4 " id="card">
<h2 style="animation-duration: 500ms; color: black;">Past Events</h2>
<div class="card-group ">
<div class="card mx-4 ">
<div class="bg-image hover-overlay hover-zoom hover-shadow ripple">
<img
src="https://source.unsplash.com/1600x900/?birthday,party"
class="card-img-top"
alt="..."
/>
<a href="#!">
<div class="mask" style="background-color: rgba(57, 192, 237, 0.2)"></div>
</a>
</div>
<div class="card-body">
<div class="d-grid gap-2">
<a class="btn btn-warning" type="button">Birthday</a>
</div>
</div>
</div>
<div class="card mx-4">
<div class="bg-image hover-overlay hover-zoom hover-shadow ripple">
<img
src="https://source.unsplash.com/1600x900/?wedding,celebration"
class="card-img-top"
alt="..."
/>
<a href="#!">
<div class="mask" style="background-color: rgba(57, 192, 237, 0.2)"></div>
</a>
</div>
<div class="card-body">
<div class="d-grid gap-2">
<a class="btn btn-warning" type="button">Wedding</a>
</div>
</div>
</div>
<div class="card mx-4">
<div class="bg-image hover-overlay hover-zoom hover-shadow ripple">
<img
src="https://source.unsplash.com/1600x900/?college,events"
class="card-img-top"
alt="..."
/>
<a href="#!">
<div class="mask" style="background-color: rgba(57, 192, 237, 0.2)"></div>
</a>
</div>
<div class="card-body">
<div class="d-grid gap-2">
<a class="btn btn-warning" type="button">College fest</a>
</div>
</div>
</div>
</div>
<div class="container my-4 ">
<h2 style="animation-duration: 500ms; color: black; " id="upcoming">Upcoming Events</h2>
<div class="card-group ">
<div class="card mx-4">
<div class="bg-image hover-overlay hover-zoom hover-shadow ripple">
<img
src="https://source.unsplash.com/1600x900/?frinds,gettogether"
class="card-img-top"
alt="..."
/>
<a href="#!">
<div class="mask" style="background-color: rgba(57, 192, 237, 0.2)"></div>
</a>
</div>
<div class="card-body">
<div class="d-grid gap-2">
<button class="btn btn-warning" type="button">Friends reunion</button>
</div>
</div>
</div>
<div class="card mx-4">
<div class="bg-image hover-overlay hover-zoom hover-shadow ripple">
<img
src="https://source.unsplash.com/1600x900/?marriage,Aniversary"
class="card-img-top"
alt="..."
/>
<a href="#!">
<div class="mask" style="background-color: rgba(57, 192, 237, 0.2)"></div>
</a>
</div>
<div class="card-body">
<div class="d-grid gap-2">
<button class="btn btn-warning" type="button">Aniversary</button>
</div>
</div>
</div>
<div class="card mx-4">
<div class="bg-image hover-overlay hover-zoom hover-shadow ripple">
<img
src="https://source.unsplash.com/1600x900/?seminar,conference"
class="card-img-top"
alt="..."
/>
<a href="#!">
<div class="mask" style="background-color: rgba(57, 192, 237, 0.2)"></div>
</a>
</div>
<div class="card-body">
<div class="d-grid gap-2">
<button class="btn btn-warning" type="button">Seminar</button>
</div>
</div>
</div>
</div>
</div>
<div class="container my-4 " id="register">
<h2 style="color: black;">Register your event</h2>
<section class="h-100 gradient-form" style="background-color: #eee;">
<div class="container py-5 h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col-xl-10">
<div class="card rounded-3 text-black">
<div class="row g-0">
<div class="col-lg-6">
<div class="card-body p-md-5 mx-md-4">
<div class="text-center">
<img src="https://mdbootstrap.com/img/Photos/new-templates/bootstrap-login-form/lotus.png" style="width: 185px;" alt="logo">
<h4 class="mt-1 mb-5 pb-1">We are The Lotus Team</h4>
</div>
<form>
<p>Register for an event</p>
<div class="row mb-4">
<div class="col">
<div class="form-outline">
<input type="text" id="form6Example1" class="form-control" />
<label class="form-label" for="form6Example1">First name</label>
</div>
</div>
<div class="col">
<div class="form-outline">
<input type="text" id="form6Example2" class="form-control" />
<label class="form-label" for="form6Example2">Last name</label>
</div>
</div>
</div>
<!-- Text input -->
<div class="form-outline mb-4">
<input type="text" id="form6Example3" class="form-control" />
<label class="form-label" for="form6Example3">Company name</label>
</div>
<!-- Text input -->
<div class="form-outline mb-4">
<input type="text" id="form6Example4" class="form-control" />
<label class="form-label" for="form6Example4">Address</label>
</div>
<!-- Email input -->
<div class="form-outline mb-4">
<input type="email" id="form6Example5" class="form-control" />
<label class="form-label" for="form6Example5">Email</label>
</div>
<!-- Number input -->
<div class="form-outline mb-4">
<input type="number" id="form6Example6" class="form-control" />
<label class="form-label" for="form6Example6">Phone</label>
</div>
<!-- Message input -->
<div class="form-outline mb-4">
<textarea class="form-control" id="form6Example7" rows="4"></textarea>
<label class="form-label" for="form6Example7">Event information</label>
</div>
<!-- Checkbox -->
<div class="form-check d-flex justify-content-center mb-4">
<input
class="form-check-input me-2"
type="checkbox"
value=""
id="form6Example8"
checked
/>
<label class="form-check-label" for="form6Example8"> Create an account? </label>
</div>
<!-- Submit button -->
<button type="submit" class="btn btn-primary btn-block mb-4">Submit</button>
</form>
</div>
</div>
<div class="col-lg-6 d-flex align-items-center gradient-custom-2">
<div class="text-white px-3 py-4 p-md-5 mx-md-4">
<h4 class="mb-4">We are more than just a company</h4>
<p class="small mb-0">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<br>
<br class=" footer divider">
<br class=" footer divider">
<br class=" footer divider">
<br class=" footer divider">
<hr class="footer divider">
<footer class="text-center text-white font-large " style="background-color: #f1f1f1;">
<!-- Grid container -->
<div class="container">
<!-- Section: Social media -->
<section class="mb-4">
<!-- Facebook -->
<a
class="btn btn-link btn-floating btn-lg text-dark m-1"
href="#!"
role="button"
data-mdb-ripple-color="dark"
><i class="fab fa-facebook-f"></i
></a>
<!-- Twitter -->
<a
class="btn btn-link btn-floating btn-lg text-dark m-1"
href="#!"
role="button"
data-mdb-ripple-color="dark"
><i class="fab fa-twitter"></i
></a>
<!-- Google -->
<a
class="btn btn-link btn-floating btn-lg text-dark m-1"
href="#!"
role="button"
data-mdb-ripple-color="dark"
><i class="fab fa-google"></i
></a>
<!-- Instagram -->
<a
class="btn btn-link btn-floating btn-lg text-dark m-1"
href="#!"
role="button"
data-mdb-ripple-color="dark"
><i class="fab fa-instagram"></i
></a>
<!-- Linkedin -->
<a
class="btn btn-link btn-floating btn-lg text-dark m-1"
href="#!"
role="button"
data-mdb-ripple-color="dark"
><i class="fab fa-linkedin"></i
></a>
<!-- Github -->
<a
class="btn btn-link btn-floating btn-lg text-dark m-1"
href="#!"
role="button"
data-mdb-ripple-color="dark"
><i class="fab fa-github"></i
></a>
</section>
<!-- Section: Social media -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center text-dark p-3" style="background-color: rgba(0, 0, 0, 0.2);">
© 2020 Copyright:
<a class="text-dark" href="https://mdbootstrap.com/">lotusevent.com</a>
</div>
<!-- Copyright -->
</footer>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>