-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
982 lines (828 loc) · 42.3 KB
/
index.html
File metadata and controls
982 lines (828 loc) · 42.3 KB
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
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Welcome to PlayCafé.</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="images/favicon.ico" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Bungee|Bungee+Hairline" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="https://formden.com/static/cdn/bootstrap-iso.css" rel="stylesheet"/>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/> <!-- -->
<!-- Bootstrap Date-Picker Plugin -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.4.1/css/bootstrap-datepicker3.css" rel="stylesheet"/>
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="https://formden.com/static/cdn/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!-- =======================================================
Features:
=========
Scrollspy
Modals - Games Section
Forms - working Submit button that links to external dummy page, javascript settings
Form filters for options
Form input validation - javascript settings
Calendar - Date selection on form, javascript settings
Google Map
Youtube Video
Testimonial/Message Section
Back-to-top button
Images filters - Games Section
Social Medias
Favicon
javascript:void(0);
======================================================= -->
<!-- =======================================================
Credits:
========
BizPage by BootstrapMade: https://bootstrapmade.com/bizpage-bootstrap-business-template/
License: https://bootstrapmade.com/license/
Images: https://pexels.com/
https://themindcafe.com.sg/
https://dreamstime.com/
https://ideas.evite.com/
https://lauracrowell.com/
https://www.easypeasyandfun.com/
Favicon: https://www.favicon-generator.org/
Video by Simple Method: https://www.youtube.com/channel/UCYq3FosXAGoKK6nLi05DSug
Game Infos: https://en.wikipedia.org/wiki/
References: https://www.w3schools.com/
======================================================= -->
</head>
<body data-spy="scroll" data-target="#nav-menu-container" data-offset="50"> <!-- Scrollspy -->
<!--==========================
Header
============================-->
<header id="header">
<div class="container-fluid">
<div id="logo" class="pull-left">
<h1><a href="#intro" class="scrollto">PlayCafé.</a></h1>
<!-- <a href="#intro"><img src="img/logo.png" alt="" title="" /></a>-->
</div>
<nav id="nav-menu-container">
<ul class="nav-menu nav nav-pills">
<li class="menu-active"><a href="#intro">Home</a></li>
<li><a href="#games">Games</a></li>
<li><a href="#fnbmenu">Menu</a></li>
<li><a href="#promotions">Rates & Deals</a></li>
<li><a href="#about">Crafts</a></li>
<li class="menu-has-children"><a href="javascript:void(0);">Contact</a>
<ul>
<li><a href="#book-table">Reservation</a></li>
<li><a href="#map">Map</a></li>
<li><a href="#contact">Enquiries</a></li>
</ul>
<li><a href="javascript:void(0);">Cart</a></li>
<li><a href="javascript:void(0);">Login</a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container">
<div id="introCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="carousel-background"><img src="images/C_1.jpeg" alt=""></div>
<div class="carousel-container">
<div class="carousel-content">
<h2>PlayCafé.</h2>
<p>Not just your usual cafe, we are here to share the love for board games and crafts.
</p>
<a href="#book-table" class="btn-get-started scrollto">Start</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background"><img src="images/C_2.jpeg" alt=""></div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Snack & Sip.</h2>
<p>Enjoy our wide selections of food and drinks while you game.</p>
<a href="#book-table" class="btn-get-started scrollto">Start</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background"><img src="images/C_3.jpeg" alt=""></div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Chill.</h2>
<p>Gather your best companions and spend quality fun-time together.</p>
<a href="#book-table" class="btn-get-started scrollto">Start</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background"><img src="images/C_4.jpeg" alt=""></div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Craft.</h2>
<p>Get your creativity juices flowing, create your own Art-Board games.</p>
<a href="#book-table" class="btn-get-started scrollto">Start</a>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#introCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon ion-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#introCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon ion-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section><!-- #intro -->
<main id="main">
<!--==========================
Services Section
============================-->
<section id="services">
<div class="container">
<header class="section-header wow fadeInUp">
<div class="banner">
<p>In PlayCafé, we believe in the love for boardgames, while bringing in joy through games.</p>
</div>
</header>
<div class="row">
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<div class="icon"><i class="ion-ios-game-controller-a"></i></div>
<h4 class="title"><a href="javascript:void(0);">Play.</a></h4>
<p class="description">Enjoy our exhaustive <a href="#games">Game Library</a> of more than 300 games in the cafe. Enjoyed them? Bring them home at a special price!</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<div class="icon"><i class="ion-coffee"></i></div>
<h4 class="title"><a href="javascript:void(0);">Indulge.</a></h4>
<p class="description">We offer fantastic <a href="#fnbmenu">coffee, snacks and desserts</a> to keep you refreshed while you game.</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<div class="icon"><i class="ion-happy"></i></div>
<h4 class="title"><a href="javascript:void(0);">Enjoy.</a></h4>
<p class="description">Be it birthdays parties, school or corporate events; gaming or crafts activities, we hold them all.
<a href="#contact">Contact Us</a> to find out more.</p>
</div>
</div>
</div>
</section>
<!--==========================
Games Section
============================-->
<section id="games" class="section-bg" >
<div class="container">
<header class="section-header">
<h3 class="section-title">Games</h3>
</header>
<div class="row">
<div class="col-lg-12">
<ul id="games-flters">
<li data-filter="*" class="filter-active">Featured</li>
<li data-filter=".filter-app">New</li>
<li data-filter=".filter-card">Popular</li>
<li>Library</li>
</ul>
</div>
</div>
<div class="row games-container">
<div class="col-lg-4 col-md-6 games-item filter-app wow fadeInUp">
<div class="games-wrap">
<figure>
<img src="images/games/pop 1.jpg" class="img-fluid" alt="">
<a href="#myModal" class="link-preview" data-toggle="modal"><i class="ion ion-information"></i>
<!-- The Modal -->
<div class="modal" id="myModal">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Chinese Chess</h4>
<button type="button" class="close"><span aria-hidden="true">×</span></button>
</div>
<!-- Modal Body -->
<div class="modal-body">
<p>Xiangqi, also called Chinese Chess, is a strategy board game for two players. It is one of the most popular board games in China, and is in the same family as Western chess, chaturanga, shogi, Indian chess and janggi.</p>
<p><strong>Players:</strong> 2
<br><strong>Skill(s) required:</strong> Strategy, Tactics
</p>
<p>S$ 5.90</p>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-dark"><h5><i class="fa fa-cart-arrow-down"></i> Add to Cart</h5></button>
</div>
</div>
</div>
</div>
</a>
<a href="#" class="link-details" title="Add to Cart"><i class="fa fa-cart-arrow-down"></i></a>
</figure>
<div class="games-info">
<h4><a href="#">Chinese Chess</a></h4>
<p>S$ 5.90</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 games-item filter-app wow fadeInUp" data-wow-delay="0.2s">
<div class="games-wrap">
<figure>
<img src="images/games/new 2.jpg" class="img-fluid" alt="">
<a href="#myModal2" class="link-preview" data-toggle="modal"><i class="ion ion-information"></i>
<!-- The Modal -->
<div class="modal" id="myModal2">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Scrabble</h4>
<button type="button" class="close"><span aria-hidden="true">×</span></button>
</div>
<!-- Modal body -->
<div class="modal-body">
<p>Scrabble is a word game in which two to four players score points by placing tiles bearing a single letter onto a board divided into a 15×15 grid of squares.</p>
<p><strong>Players:</strong> 2–4
<br><strong>Skill(s) required:</strong> Vocabulary, Spelling, Anagramming, Strategy, Counting, Probability
</p>
<p>S$ 29.90</p>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-dark"><h5><i class="fa fa-cart-arrow-down"></i> Add to Cart</h5></button>
</div>
</div>
</div>
</div>
</a>
<a href="#" class="link-details" title="Add to Cart"><i class="fa fa-cart-arrow-down"></i></a>
</figure>
<div class="games-info">
<h4><a href="#">Scrabble</a></h4>
<p>S$ 29.90</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 games-item filter-card wow fadeInUp">
<div class="games-wrap">
<figure>
<img src="images/games/pop 2.jpeg" class="img-fluid" alt="">
<a href="#myModal3" class="link-preview" data-toggle="modal"><i class="ion ion-information"></i>
<!-- The Modal -->
<div class="modal" id="myModal3">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Monopoly</h4>
<button type="button" class="close"><span aria-hidden="true">×</span></button>
</div>
<!-- Modal body -->
<div class="modal-body">
<p>Monopoly is a board game where players roll two six-sided dice to move around the game board, buying and trading properties, and develop them with houses and hotels.</p>
<p><strong>Players:</strong> Some versions 2–6; Other versions 2–10
<br><strong>Skill(s) required:</strong> Negotiation, Resource management, Strategy</p>
</p>
<p>S$ 29.90</p>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-dark"><h5><i class="fa fa-cart-arrow-down"></i> Add to Cart</h5></button>
</div>
</div>
</div>
</div>
</a>
<a href="#" class="link-details" title="Add to Cart"><i class="fa fa-cart-arrow-down"></i></a>
</figure>
<div class="games-info">
<h4><a href="#">Monopoly</a></h4>
<p>S$ 29.90</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 games-item filter-app wow fadeInUp" data-wow-delay="0.2s">
<div class="games-wrap">
<figure>
<img src="images/games/new 3.jpg" class="img-fluid" alt="">
<a href="#myModal4" class="link-preview" data-toggle="modal"><i class="ion ion-information"></i>
<!-- The Modal -->
<div class="modal" id="myModal4">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">The Business Game</h4>
<button type="button" class="close"><span aria-hidden="true">×</span></button>
</div>
<!-- Modal body -->
<div class="modal-body">
<p>Mine a Million or The Business Game is a board game for 2-6 players previously published by Waddingtons. The game is named after the economic business of mining tin and gaining profit by transporting this to markets near and far.</p>
<p><strong>Players:</strong> 2–6
<br><strong>Skill(s) required:</strong> Negotiation, Resource management, Strategy</p>
</p>
<p>S$ 39.90</p>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-dark"><h5><i class="fa fa-cart-arrow-down"></i> Add to Cart</h5></button>
</div>
</div>
</div>
</div>
</a>
<a href="#" class="link-details" title="Add to Cart"><i class="fa fa-cart-arrow-down"></i></a>
</figure>
<div class="games-info">
<h4><a href="#">The Business Game</a></h4>
<p>S$ 39.90</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 games-item filter-card wow fadeInUp">
<div class="games-wrap">
<figure>
<img src="images/games/new 1.jpg" class="img-fluid" alt="">
<a href="#myModal5" class="link-preview" data-toggle="modal"><i class="ion ion-information"></i>
<!-- The Modal -->
<div class="modal" id="myModal5">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Uno</h4>
<button type="button" class="close"><span aria-hidden="true">×</span></button>
</div>
<!-- Modal body -->
<div class="modal-body">
<p>Uno is an American shedding-type card game that is played with a specially printed deck. The game's general principles put it into the Crazy Eights family of card games.</p>
<p><strong>Players:</strong> 2-10
<br><strong>Skill(s) required:</strong> Strategy</p>
</p>
<p>S$ 5.90</p>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-dark"><h5><i class="fa fa-cart-arrow-down"></i> Add to Cart</h5></button>
</div>
</div>
</div>
</div>
</a>
<a href="#" class="link-details" title="Add to Cart"><i class="fa fa-cart-arrow-down"></i></a>
</figure>
<div class="games-info">
<h4><a href="#">Uno</a></h4>
<p>S$ 5.90</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 games-item filter-card wow fadeInUp" data-wow-delay="0.1s">
<div class="games-wrap">
<figure>
<img src="images/games/pop 3.jpg" class="img-fluid" alt="">
<a href="#myModal6" class="link-preview" data-toggle="modal"><i class="ion ion-information"></i>
<!-- The Modal -->
<div class="modal" id="myModal6">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Chess</h4>
<button type="button" class="close"><span aria-hidden="true">×</span></button>
</div>
<!-- Modal body -->
<div class="modal-body">
<p>Chess is a two-player strategy board game played on a chessboard, a checkered gameboard with 64 squares arranged in an 8×8 grid. The game is played by millions of people worldwide.</p>
<p><strong>Players:</strong> 2
<br><strong>Skill(s) required:</strong> Strategy, Tactics</p>
</p>
<p>S$ 29.90</p>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-dark"><h5><i class="fa fa-cart-arrow-down"></i> Add to Cart</h5></button>
</div>
</div>
</div>
</div>
</a>
<a href="#" class="link-details" title="Add to Cart"><i class="fa fa-cart-arrow-down"></i></a>
</figure>
<div class="games-info">
<h4><a href="#">Chess</a></h4>
<p>S$ 29.90</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- #games -->
<!--==========================
Menu Section
============================-->
<section id="fnbmenu" class="wow fadeIn">
<div class="container text-center">
<h3>Snack & Sip.</h3>
<p>Exclusive food & beverages available in store while you game.</p>
<a class="cta-btn" href="#">Menu</a>
</div>
</section><!-- #fnbmenu -->
<!--==========================
Promotions Section
============================-->
<section id="promotions">
<div class="container">
<div class="section-header wow fadeInUp">
<h3>Rates & Deals</h3>
<p>Don't miss out our current offers!</p>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-4" id="standard">
<h4>Rates</h4>
<img src="images/promo.jpg" class="img-fluid" alt="">
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-8" id="promotion">
<h4>Promotions</h4>
<div class="col-lg-6 col-md-12 col-sm-12 wow fadeInUp" data-wow-delay="0.2s">
<div class="promos">
<img src="images/promo.jpg" class="img-fluid" alt="">
<div class="promos-info">
<div class="promos-info-content">
<div class="social">
<a href="" class="link-info"><i class="ion ion-information"></i></a>
<a href="" class="link-twitter"><i class="fa fa-twitter"></i></a>
<a href="" class="link-facebook"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 wow fadeInUp" data-wow-delay="0.1s">
<div class="promos">
<img src="images/promo.jpg" class="img-fluid" alt="">
<div class="promos-info">
<div class="promos-info-content">
<div class="social">
<a href="" class="link-info"><i class="ion ion-information"></i></a>
<a href="" class="link-twitter"><i class="fa fa-twitter"></i></a>
<a href="" class="link-facebook"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 wow fadeInUp" data-wow-delay="0.2s">
<div class="promos">
<img src="images/promo.jpg" class="img-fluid" alt="">
<div class="promos-info">
<div class="promos-info-content">
<div class="social">
<a href="" class="link-info"><i class="ion ion-information"></i></a>
<a href="" class="link-twitter"><i class="fa fa-twitter"></i></a>
<a href="" class="link-facebook"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 wow col-sm-12 fadeInUp" data-wow-delay="0.3s">
<div class="promos">
<img src="images/promo.jpg" class="img-fluid" alt="">
<div class="promos-info">
<div class="promos-info-content">
<div class="social">
<a href="" class="link-info"><i class="ion ion-information"></i></a>
<a href="" class="link-twitter"><i class="fa fa-twitter"></i></a>
<a href="" class="link-facebook"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> <!-- #promotions -->
<!--==========================
(About)Crafts Section
============================-->
<section id="about">
<div class="container">
<header class="section-header">
<h3>Crafts</h3>
<p>Create your own games.</p>
</header>
<div class="row about-cols">
<div class="col-md-4 wow fadeInUp">
<div class="about-col">
<div class="img">
<img src="images/Craft_1.jpeg" alt="" class="img-fluid">
<div class="icon"><i class="ion-android-color-palette"></i></div>
</div>
<h2 class="title"><a href="#">Modelings</a></h2>
<p></p>
</div>
</div>
<div class="col-md-4 wow fadeInUp" data-wow-delay="0.1s">
<div class="about-col">
<div class="img">
<img src="images/Craft_2.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-paintbrush"></i></div>
</div>
<h2 class="title"><a href="#">DIY Paintings</a></h2>
<p></p>
</div>
</div>
<div class="col-md-4 wow fadeInUp" data-wow-delay="0.1s">
<div class="about-col">
<div class="img">
<img src="images/Craft_3.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-ios-body"></i></div>
</div>
<h2 class="title"><a href="#">Figurines</a></h2>
<p></p>
</div>
</div>
</div>
<!--==========================
Video Section
============================-->
<div class="video">
<iframe src="https://www.youtube.com/embed/FFxZjEoMEF4?ecver=2" width="640" height="360" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div><!-- Video -->
</div>
</section><!-- #Crafts -->
<!--==========================
(Book-table)Reservation Section
============================-->
<section id="book-table">
<div class="container">
<div class="section-header wow fadeInUp">
<h3>Reservation</h3>
</div>
<!-- Credits: https://formden.com/form-builder/ -->
<form id="form-submit" action="/dummy.php" method="POST">
<div class="bootstrap-iso">
<div class="row">
<div class="col-md-12">
<div class="input-group">
<div class="input-group-addon"><i class="fa fa-calendar"></i></div>
<input class="form-control" id="date" required name="date" placeholder="DD/MM/YYYY" type="text"/>
</div>
</div>
</div>
</div>
<div class="row about-cols">
<div class="col-md-12">
<div class="right-info">
<div class="row">
<div class="col-md-6">
<div class="preftime">
<select required name="hour">
<option value="">Preferred Time</option>
<option value="10-00">10:00-14:00</option>
<option value="12-00">14:00-18:00</option>
<option value="14-00">18:00-22:00</option>
<option value="16-00">22:00-02:00</option>
</select>
</div>
</div>
<div class="col-md-6">
<div class="totalperson">
<select required class="person" name='persons'>
<option value="">Total Persons</option>
<option value="2-3">2-3</option>
<option value="4-6">4-6</option>
<option value="7-10">7-10</option>
<option value="11ormore">11 or More</option>
</select>
</div>
</div>
<div class="col-md-4">
<input name="name" type="name" class="form-control" id="name" placeholder="Name" required="">
</div>
<div class="col-md-4">
<input name="phone" type="phone" class="form-control" id="phone" placeholder="Contact Number" required="">
</div>
<div class="col-md-4">
<div class="buttonfont">
<button type="submit" id="form-submit" class="btn">Reserve</button>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</section>
<!--==========================
Map Section
============================-->
<section id="map">
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d255281.22544736444!2d103.7041626029671!3d1.3139961238575106!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31da11238a8b9375%3A0x887869cf52abf5c4!2sSingapore!5e0!3m2!1sen!2ssg!4v1551935789975" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</section><!-- Map -->
<!--==========================
Contact Section
============================-->
<section id="contact" class="section-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h3>Contact Us</h3>
</div>
<div class="row contact-info">
<div class="col-md-4">
<div class="contact-hours">
<i class="ion-ios-clock"></i>
<h3>Operating Hours</h3>
<p>Daily 10:00AM - 04:00AM</p>
</div>
</div>
<div class="col-md-4">
<div class="contact-phone">
<i class="ion-ios-telephone"></i>
<h3>Phone</h3>
<p><a href="tel:+0 1234 5678">+0 1234 5678</a></p>
</div>
</div>
<div class="col-md-4">
<div class="contact-email">
<i class="ion-ios-email"></i>
<h3>Email</h3>
<p><a href="mailto:contact@playcafe.com">contact@playcafe.com</a></p>
</div>
</div>
</div>
<div class="form">
<div id="sendmessage">Your message has been sent. Thank you!</div>
<div id="errormessage"></div>
<h5>We are happy to hear from you & will get back to you shortly!</h5>
<form action="/dummy.php" method="POST" role="form" class="contactForm">
<div class="form-row">
<div class="form-group col-md-6">
<input type="text" name="name" class="form-control" id="name" placeholder="Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="validation"></div>
</div>
<div class="form-group col-md-6">
<input type="email" class="form-control" name="email" id="email" placeholder="Email" data-rule="email" data-msg="Please enter a valid email" />
<div class="validation"></div>
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" data-rule="minlen:4" data-msg="Please enter at least 8 chars of subject" />
<div class="validation"></div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="Message"></textarea>
<div class="validation"></div>
</div>
<div class="buttonfont">
<button type="submit">Enquire</button>
</div>
</form>
</div>
</div>
</section><!-- #contact -->
<!--==========================
Testimonial(Messages) Section
============================-->
<section id="testimonials" class="section-bg wow fadeInUp">
<div class="container">
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item">
<img src="images/Testimonial_1.png" class="testimonial-img" alt="">
<h3>Mister Ja</h3>
<p>
<img src="images/quote-sign-left.png" class="quote-sign-left" alt="">
Proin iaculis purus consequat sem cure digni ssim donec porttitora entum suscipit rhoncus. Accusantium quam, ultricies eget id, aliquam eget nibh et. Maecen aliquam, risus at semper.
<img src="images/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
<div class="testimonial-item">
<img src="images/Testimonial_2.png" class="testimonial-img" alt="">
<h3>Dino Yoshi</h3>
<p>
<img src="images/quote-sign-left.png" class="quote-sign-left" alt="">
Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa.
<img src="images/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
<div class="testimonial-item">
<img src="images/Testimonial_3.png" class="testimonial-img" alt="">
<h3>Minion Pal</h3>
<p>
<img src="images/quote-sign-left.png" class="quote-sign-left" alt="">
Enim nisi quem export duis labore cillum quae magna enim sint quorum nulla quem veniam duis minim tempor labore quem eram duis noster aute amet eram fore quis sint minim.
<img src="images/quote-sign-right.png" class="quote-sign-right" alt="">
</p>
</div>
</div>
</div>
</section><!-- #Messages -->
</main>
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-info">
<h3>About PlayCafé.</h3>
<p>In PlayCafé, we believe in the love for boardgames, while bringing in joy through games.</p>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><a href="#games">Games</a></li>
<li><a href="#fnbmenu">Menu</a></li>
<li><a href="#promotions">Rates & Deals</a></li>
<li><a href="#about">Crafts</a></li>
<li><a href="#">Terms of service</a></li>
<li><a href="#">Privacy policy</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-contact">
<h4>Contact Us</h4>
<p>
Pewcodes Land<br>
Avenue 123<br><br>
<strong>+0 1234 5678</strong><br>
<strong>contact@playcafe.com</strong><br>
</p>
<div class="social-links">
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="#" class="member"><i class="ion ion-android-person"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6 footer-newsletter">
<h4>Newsletter</h4>
<p>Subscribe to our newsletter for updates of the latest promotions, deals and events.</p>
<form action="/dummy.php" method="post">
<input type="email" name="email" placeholder=" Email">
<input type="submit" value="Subscribe">
</form>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong>PlayCafé</strong>. All Rights Reserved.
</div>
<div class="credits">
<!--
All the links in the footer should remain intact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=BizPage
-->
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a> & <a href="https://github.com/pewcodes">Pewcodes</a>
<p>All images used are solely for illustration purposes, no copyright infringement is intended.</p>
</div>
</div>
</footer><!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<script src="lib/touchSwipe/jquery.touchSwipe.min.js"></script>
<!-- Bootstrap Date-Picker Plugin -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.4.1/js/bootstrap-datepicker.min.js"></script>
<!-- Contact Form JavaScript File -->
<script src="contactform/contactform.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
<!-- Scrollspy Javascript File -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <!-- -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <!-- -->
</body>
</html>