-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
566 lines (566 loc) · 21.2 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
<!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" />
<title>Convension Center</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Manrope&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<script
src="https://kit.fontawesome.com/15f24c3ec0.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<!-- Offer Toast start -->
<div class="text-center p-3 bg-primary" id="toastDismis">
<h5 class="pe-1 text-white d-inline-block">20% off on next booking</h5>
<button
id="toastDismis"
type="button"
class="btn text-light d-inline-block"
onclick="offerToast()"
>
<i class="fas fa-times fs-5"></i>
</button>
</div>
<!-- Offer Toast end -->
<!-- header part start -->
<section class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand text-dark fs-4" href="#"
>Modern Convention Center</a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse d-lg-flex justify-content-end"
id="navbarNav"
>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link text-dark" aria-current="page" href="#"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link text-dark" aria-current="page" href="#"
>About Us</a
>
</li>
<li class="nav-item">
<a class="nav-link text-dark" aria-current="page" href="#"
>Contact</a
>
</li>
<li class="nav-item">
<a class="nav-link text-dark" aria-current="page" href="#"
>Subscribe</a
>
</li>
</ul>
</div>
</nav>
</section>
<!-- header part end -->
</header>
<main>
<!-- Carousel section start -->
<section>
<div class="">
<div
id="carouselExampleCaptions"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="3"
aria-label="Slide 4"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/banner.png" class="d-block w-100" />
<div class="carousel-caption d-none d-md-block px-5">
<h5>The perfect venue for your next event</h5>
<p class="">
Originally a hall in a castle would be first priority. Main
original convention centers and halls were in castles
</p>
<a
class="btn btn-light text-primary fs-5"
href="#"
role="button"
>Book Now</a
>
</div>
</div>
<div class="carousel-item">
<img src="images/banner.png" class="d-block w-100" />
<div class="carousel-caption d-none d-md-block">
<h5>We offer you geat facility</h5>
<p class="">
Originally a hall in a castle would be designed by our
designer and the original convention centers or halls we
</p>
<a
class="btn btn-light text-primary fs-5"
href="#"
role="button"
>Book Now</a
>
</div>
</div>
<div class="carousel-item">
<img src="images/banner.png" class="d-block w-100" />
<div class="carousel-caption d-none d-md-block">
<h5>Our main goal client satisfaction</h5>
<p class="">
Our convention Plan or halls were in castles and palaces.
Originally a hall in a castle would be designed by
</p>
<a
class="btn btn-light text-primary fs-5"
href="#"
role="button"
>Book Now</a
>
</div>
</div>
<div class="carousel-item">
<img src="images/banner.png" class="d-block w-100" />
<div class="carousel-caption d-none d-md-block">
<h5>Our design and service are awesome</h5>
<p class="">
Build a building and design a compert and awesome
convention. Feel free choose us now and enjoy. okay
</p>
<a
class="btn btn-light text-primary fs-5"
href="#"
role="button"
>Book Now</a
>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-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-bs-target="#carouselExampleCaptions"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- Carousel section end -->
<!-- wedding section start -->
<section class="container">
<div class="row my-5">
<div class="col-lg-6 col-md-6 col-sm-12">
<img src="images/wedding.png" class="w-100" alt="image" />
</div>
<div
class="col-lg-6 col-md-6 col-sm-12 d-flex flex-column align-items-start justify-content-center"
>
<h1>Every moment is Precious</h1>
<p>
Amet minim mollit non deserunt ullamco est sit aliqua dolor do
amet sint. Velit officia consequat duis enim velit mollit.
Exercitation veniam consequat sunt nostrud amet.
</p>
<div class="btn btn-primary">
Explore our album
<i class="fas fa-arrow-right" aria-hidden="true"></i>
</div>
</div>
</div>
</section>
<!-- wedding section end -->
<!-- Our package section start -->
<section class="container my-5 pb-5">
<h1 class="text-center py-2">Our Package</h1>
<div class="row mt-5 gx-4 gy-5">
<div class="col-lg-3 col-md-6 col-sm-12">
<h1>$300</h1>
<h2>Bussiness Fair</h2>
<p>For most businesses event like book fair, craft fair.</p>
<ul>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">limited space access</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Secuirty facility</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">event support</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Decoration design</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Per day bill</p>
</li>
</ul>
<div
class="btn btn-primary rounded-pill pt-1 d-flex justify-content-center py-2 ms-3 align-items-center w-75"
>
Choose plan
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<h1>$500</h1>
<h2>wedding basic</h2>
<p>For most businesses event like book fair, craft fair.</p>
<ul>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Full space access</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Food arrangement</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">mangement support</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Decoration design</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Billed as shift</p>
</li>
</ul>
<div
class="btn btn-primary rounded-pill pt-1 d-flex justify-content-center ms-3 py-2 align-items-center w-75"
>
Choose plan
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 active bg-primary px-3 py-3">
<h1>$800</h1>
<h2>Wedding plus</h2>
<p>For most businesses event like book fair, craft fair.</p>
<ul>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Full space access</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Dedicated team</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Buffet food</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">premium Decoration</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">pay as plan</p>
</li>
</ul>
<div
class="btn btn-warning rounded-pill pt-1 d-flex justify-content-center ms-4 py-2 align-items-center w-75"
>
Choose plan
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<h1>$1200</h1>
<h2>Bussiness Fair</h2>
<p>For most businesses event like book fair, craft fair.</p>
<ul>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Full space access</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Dedicated team</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">Buffet food</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">premium Decoration</p>
</li>
<li>
<i class="fas fa-check d-inline"></i>
<p class="d-inline-block">pay as plan</p>
</li>
</ul>
<div
class="btn btn-primary rounded-pill pt-1 d-flex justify-content-center ms-3 py-2 align-items-center w-75"
>
Choose plan
</div>
</div>
</div>
</section>
<!-- Our package section end -->
<!-- FAQ section start -->
<section class="container my-5">
<h1 class="text-center py-4 mb-4">Frequently Asked Questions</h1>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button
class="accordion-button"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseOne"
aria-expanded="true"
aria-controls="collapseOne"
>
What’s the difference between event design and event
planning?
</button>
</h2>
<div
id="collapseOne"
class="accordion-collapse collapse show"
aria-labelledby="headingOne"
data-bs-parent="#accordionExample"
>
<div class="accordion-body">
Events by Knight offer tailor made events. This means we
incorporate both event design and event planning to create
that perfect event.Event design and event planning work hand
in hand to deliver a successful event.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseTwo"
aria-expanded="false"
aria-controls="collapseTwo"
>
How early do we need to start planning an event
</button>
</h2>
<div
id="collapseTwo"
class="accordion-collapse collapse"
aria-labelledby="headingTwo"
data-bs-parent="#accordionExample"
>
<div class="accordion-body">
Events by awesome offer tailor made events. This means we
incorporate both event design and event planning to create
that perfect event.Event design and event planning work hand
in hand to deliver a successful event.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseThree"
aria-expanded="false"
aria-controls="collapseThree"
>
What is your refund and cancellation policy?
</button>
</h2>
<div
id="collapseThree"
class="accordion-collapse collapse"
aria-labelledby="headingThree"
data-bs-parent="#accordionExample"
>
<div class="accordion-body">
Events by awesome offer tailor made events. This means we
incorporate both event design and event planning to create
that perfect event.Event design and event planning work hand
in hand to deliver a successful event.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingFour">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseFour"
aria-expanded="false"
aria-controls="collapseFour"
>
How do you keep budgets on track?
</button>
</h2>
<div
id="collapseFour"
class="accordion-collapse collapse"
aria-labelledby="headingFour"
data-bs-parent="#accordionExample"
>
<div class="accordion-body">
Events by awesome offer tailor made events. This means we
incorporate both event design and event planning to create
that perfect event.Event design and event planning work hand
in hand to deliver a successful event.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 pt-5">
<img src="images/people.png" class="w-100" alt="people" />
</div>
</div>
</section>
<!-- FAQ section end -->
<!-- Bonus part : Convention Center Goal start -->
<section class="container my-4 bg-">
<h1 class="text-center py-4">Our Convention Center PLane</h1>
<div class="row g-4">
<div class="col-lg-4 col-md-6 pb-4">
<div
class="d-flex justify-content-between align-items-end bg-warning rounded-3 p-3 pb-5"
>
<h3 class="text-white">Place</h3>
<img src="images/buliding.png" class="w-50" alt="catagory" />
</div>
</div>
<div class="col-lg-4 col-md-6">
<div
class="d-flex justify-content-between align-items-center bg-primary rounded-3 p-3"
>
<h3 class="text-white">Design</h3>
<img src="images/design.jpg" class="w-50" alt="catagory" />
</div>
</div>
<div class="col-lg-4 col-md-6">
<div
class="d-flex justify-content-between align-items-center bg-info rounded-3 p-3"
>
<h3 class="text-white">Convention</h3>
<img src="images/convention.jpg" class="w-50" alt="catagory" />
</div>
</div>
</div>
</section>
<!-- Bonus part : Convention Center Goal end -->
</main>
<footer class="py-5 bg-dark text-light">
<div class="container">
<div class="row d-flex align-items-center justify-content-evenly">
<div class="col-6 d-flex justify-content-center pt-3">
<p>©2022 Tanvir. All rights reserved</p>
</div>
<div class="col-6 d-flex justify-content-end">
<div class="get-app d-flex flex-column">
<h5>Get the app</h5>
<a href="#" class="mb-2"
><img src="images/App Store Badge.png" alt="apple"
/></a>
<a href="#"
><img src="images/Google Play Badge.png" alt="gplay"
/></a>
</div>
</div>
</div>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"
></script>
<script>
function offerToast() {
document
.getElementById("toastDismis")
.setAttribute("class", "toast-div");
}
</script>
</body>
</html>