-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmovies.html
2135 lines (1975 loc) · 75.2 KB
/
movies.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
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
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="zxx">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Movies</title>
<link rel="stylesheet" href="assets/css/style-starter.css">
<link href="//fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,600&display=swap"
rel="stylesheet">
</head>
<body>
<!-- header -->
<header id="site-header" class="w3l-header fixed-top">
<!--/nav-->
<nav class="navbar navbar-expand-lg navbar-light fill px-lg-0 py-0 px-3">
<div class="container">
<h1><a class="navbar-brand" href="index.html"><span class="fa fa-play icon-log"
aria-hidden="true"></span>
MyShowz </a></h1>
<!-- if logo is image enable this
<a class="navbar-brand" href="#index.html">
<img src="image-path" alt="Your logo" title="Your logo" style="height:35px;" />
</a> -->
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<!-- <span class="navbar-toggler-icon"></span> -->
<span class="fa icon-expand fa-bars"></span>
<span class="fa icon-close fa-times"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="movies.html">Movies</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Contact_Us.html">Contact</a>
</li>
</ul>
<!--/search-right-->
<!--/search-right-->
<div class="search-right">
<a href="#search" class="btn search-hny mr-lg-3 mt-lg-0 mt-4" title="search">Search <span
class="fa fa-search ml-3" aria-hidden="true"></span></a>
<!-- search popup -->
<div id="search" class="pop-overlay">
<div class="popup">
<form action="#" method="post" class="search-box">
<input type="search" placeholder="Search your Keyword" name="search"
required="required" autofocus="">
<button type="submit" class="btn"><span class="fa fa-search"
aria-hidden="true"></span></button>
</form>
<div class="browse-items">
<h3 class="hny-title two mt-md-5 mt-4">Browse all:</h3>
<ul class="search-items">
<li><a href="movies.html">Action</a></li>
<li><a href="movies.html">Drama</a></li>
<li><a href="movies.html">Family</a></li>
<li><a href="movies.html">Thriller</a></li>
<li><a href="movies.html">Commedy</a></li>
<li><a href="movies.html">Romantic</a></li>
<li><a href="movies.html">Tv-Series</a></li>
<li><a href="movies.html">Horror</a></li>
<li><a href="movies.html">Action</a></li>
<li><a href="movies.html">Drama</a></li>
<li><a href="movies.html">Family</a></li>
<li><a href="movies.html">Thriller</a></li>
<li><a href="movies.html">Commedy</a></li>
<li><a href="movies.html">Romantic</a></li>
<li><a href="movies.html">Tv-Series</a></li>
<li><a href="movies.html">Horror</a></li>
</ul>
</div>
</div>
<a class="close" href="#close">×</a>
</div>
<!-- /search popup -->
<!--/search-right-->
</div>
<div class="Login_SignUp" id="login"
style="font-size: 2rem ; display: inline-block; position: relative;">
<!-- <li class="nav-item"> -->
<a class="nav-link" href="sign_in.html"><i class="fa fa-user-circle-o"></i></a>
<!-- </li> -->
</div>
</div>
<!-- toggle switch for light and dark theme -->
<div class="mobile-position">
<nav class="navigation">
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox">
<div class="mode-container">
<i class="gg-sun"></i>
<i class="gg-moon"></i>
</div>
</label>
</div>
</nav>
</div>
</div>
</nav>
</header>
<!--/breadcrumbs -->
<div class="w3l-breadcrumbs">
<nav id="breadcrumbs" class="breadcrumbs">
<div class="container page-wrapper">
<a href="index.html">Home</a> » <span class="breadcrumb_last" aria-current="page">movies</span>
</div>
</nav>
</div>
<!--/movies -->
<!--grids-sec1-->
<section class="w3l-grids">
<div class="grids-main py-4">
<div class="container py-lg-4">
<div class="headerhny-title">
<h3 class="hny-title">Popular Movies</h3>
</div>
<div class="owl-four owl-carousel owl-theme">
<div class="item vhny-grid">
<div class="box16">
<a href="#">
<figure>
<img class="img-fluid" src="assets/images/banner1.jpg" alt="">
</figure>
<div class="box-content">
<h3 class="title">End Game</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 1 Hr 4min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
<span class="fa fa-play video-icon" aria-hidden="true"></span>
</a>
</div>
<div class="box16 mt-4">
<a href="#">
<figure>
<img class="img-fluid" src="assets/images/banner2.jpg" alt="">
</figure>
<div class="box-content">
<h3 class="title">Frozen 2</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 1 Hr 4min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
<span class="fa fa-play video-icon" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="item vhny-grid">
<div class="box16">
<a href="#">
<figure>
<img class="img-fluid" src="assets/images/banner3.jpg" alt="">
</figure>
<div class="box-content">
<h3 class="title">Doctor Sleep</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 1 Hr 4min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
<span class="fa fa-play video-icon" aria-hidden="true"></span>
</a>
</div>
<div class="box16 mt-4">
<a href="#">
<figure>
<img class="img-fluid" src="assets/images/banner4.jpg" alt="">
</figure>
<div class="box-content">
<h3 class="title">Toy story 4</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 1 Hr 4min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
<span class="fa fa-play video-icon" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="item vhny-grid">
<div class="box16">
<a href="#">
<figure>
<img class="img-fluid" src="assets/images/banner1.jpg" alt="">
</figure>
<div class="box-content">
<h3 class="title">Rocketman</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 1 Hr 4min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
<span class="fa fa-play video-icon" aria-hidden="true"></span>
</a>
</div>
<div class="box16 mt-4">
<a href="#">
<figure>
<img class="img-fluid" src="assets/images/banner2.jpg" alt="">
</figure>
<div class="box-content">
<h3 class="title">Frozen 2</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 1 Hr 4min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
<span class="fa fa-play video-icon" aria-hidden="true"></span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--grids-sec1-->
<section class="w3l-grids">
<div class="grids-main py-5">
<div class="container py-lg-4">
<div class="headerhny-title">
<div class="w3l-title-grids">
<div class="headerhny-left">
<h3 class="hny-title">Latest Movies</h3>
</div>
<div class="headerhny-right text-lg-right">
<h4><a class="show-title" href="movies.html">Show all</a></h4>
</div>
</div>
</div>
<div class="w3l-populohny-grids">
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/commando3.png" alt="">
</figure>
<a href=".Commando3" data-toggle="modal">
<div class="box-content">
<h3 class="title">Commando-3</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 1 Hr 40min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade Commando3" id="myModal" tabindex="-1" role="dialog"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/commando3.png" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :29 November 2019</h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
Commando 3 is a 2019 Indian Hindi-language action thriller film directed
by Aditya Datt and produced by Vipul Amrutlal Shah, Reliance
Entertainment.The film is the sequel of Commando: A One Man Army
(2013) and Commando 2: The Black Money Trail (2017). The third
installment of Commando film series, the film features Vidyut Jammwal,
Adah Sharma, and Angira Dhar in lead roles, with Gulshan Devaiah
portraying the antagonist.Jammwal reprises his role as
the commando Karan, who goes undercover with encounter specialist
Bhavana Reddy for an anti-terrorist mission in London.
</p>
<h4>Star Cast</h4>
<p>
Vidyut Jammwal as Commando Karanveer Singh Dogra (Karan)<br />
Adah Sharma as Inspector Bhavna Reddy<br />
Angira Dhar as British Intelligence Agent Mallika Sood<br />
Gulshan Devaiah as Buraq Ansari<br />
</p>
</div>
<div class="bookbtn">
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->
</div>
</div>
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/m3.jpg" alt="">
</figure>
<a href=".Knivesout" data-toggle="modal">
<div class="box-content">
<h3 class="title">Knives Out</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 2 Hr 10min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade Knivesout" id="myModal" tabindex="-1" role="dialog"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/m3.jpg" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :September 7, 2019 </h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
Knives Out is a 2019 American mystery film written and directed by Rian
Johnson, and produced by Johnson and Ram Bergman. It follows a master
detective investigating the death of the patriarch of a wealthy,
dysfunctional family. The film features an ensemble cast including
Daniel Craig, Chris Evans, Ana de Armas, Jamie Lee Curtis, Michael
Shannon, Don Johnson, Toni Collette, Lakeith Stanfield, Katherine
Langford, Jaeden Martell, and Christopher Plummer.
</p>
<h4>Star Cast</h4>
<p>
Daniel Craig as Benoit Blanc<br />
Chris Evans as Hugh "Ransom" Drysdale<br />
Ana de Armas as Marta Cabrera<br />
Jamie Lee Curtis as Linda Drysdale<br />
Michael Shannon as Walt Thrombey
</p>
</div>
<div class="bookbtn">
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->
</div>
</div>
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/bharat1.png" alt="">
</figure>
<a href=".Bharat" data-toggle="modal">
<div class="box-content">
<h3 class="title">Bharat</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 2 Hr 35min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade Bharat" id="myModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/bharat1.png" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :5 June 2019 </h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
Bharat is a 2019 Indian Hindi-language drama film written and directed
by Ali Abbas Zafar. It is jointly produced by Atul Agnihotri, Alvira
Khan Agnihotri, Bhushan Kumar, Krishan Kumar, Nikhil Namit and Salman
Khan under the banners Reel Life Productions, Salman Khan Films and
T-Series. The film stars Salman Khan, Katrina Kaif, Sunil Grover, Disha
Patani and Jackie Shroff. Tabu makes a friendly appearance. It traces
India's post-independence history from the perspective of a common man,
and follows his life from the age of 8 to 70.
</p>
<h4>Star Cast</h4>
<p>
Salman Khan as Bharat Kumar<br />
Katrina Kaif as Kumud Raina Kumar<br />
Disha Patani as Radha Mathur<br />
Sunil Grover as Vilayti Khan<br />
Jackie Shroff as Gautam Kumar
</p>
</div>
<div class="bookbtn">
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->
</div>
</div>
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/m5.jpg" alt="">
</figure>
<a href=".Jumanji" data-toggle="modal">
<div class="box-content">
<h3 class="title">Jumanji : The Next Level</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 2 Hr 3min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade Jumanji" id="myModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/m5.jpg" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :December 13, 2019 </h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
Jumanji: The Next Level is a 2019 American fantasy adventure comedy film
directed by Jake Kasdan and co-written by Kasdan, Jeff Pinkner, and
Scott Rosenberg. It is a sequel to 2017's Jumanji: Welcome to the
Jungle, the second follow-up to 1995's Jumanji, and is the fourth
installment in the Jumanji franchise. It stars Dwayne Johnson, Jack
Black, Kevin Hart, Karen Gillan, Nick Jonas, Alex Wolff, Morgan Turner,
Ser'Darius Blain, and Madison Iseman reprising their roles from the
previous film while Awkwafina, Rory McCann, Danny Glover, and Danny
DeVito also join the cast. The film's plot takes place two years after
Welcome to the Jungle, in which the same group of teenagers, along with
an old friend and two unwitting additions, become trapped in Jumanji.
There, they all find themselves facing new problems and challenges with
both old and new avatars while having to save the land from a new
villain in order to escape.
</p>
<h4>Star Cast</h4>
<p>
Dwayne Johnson as Dr. Xander "Smolder" Bravestone<br />
Jack Black as Professor Sheldon "Shelly" Oberon<br />
Kevin Hart as Franklin "Mouse" Finbar<br />
Karen Gillan as Ruby Roundhouse<br />
Nick Jonas as Jefferson "Seaplane" McDonough
</p>
</div>
<div class="bookbtn">
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->
</div>
</div>
</div>
<!-- ***********************************Adults Section ************************************** -->
<div class="w3l-title-grids">
<div class="headerhny-left">
<h3 class="hny-title">Adults</h3>
</div>
<div class="headerhny-right text-lg-right">
<h4><a class="show-title" href="movies.html">Show all</a></h4>
</div>
</div>
<div class="w3l-populohny-grids">
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/m1.jpg" alt="">
</figure>
<a href=".Rocketman" data-toggle="modal">
<div class="box-content">
<h3 class="title">Rocketman</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 2 Hr 1min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade Rocketman" id="myModal" tabindex="-1" role="dialog"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/m1.jpg" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :31 May 2019 </h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
Rocketman is a 2019 biographical musical film based on the life of
British musician Elton John. Directed by Dexter Fletcher and written by
Lee Hall, it stars Taron Egerton as Elton John, with Jamie Bell as
Bernie Taupin, Richard Madden as John Reid, and Bryce Dallas Howard as
Sheila Eileen, John's mother. The film follows John in his early days in
England as a prodigy at the Royal Academy of Music through his musical
partnership with Taupin, and is titled after John's 1972 song "Rocket
Man".
</p>
<h4>Star Cast</h4>
<p>
Taron Egerton as Elton John<br />
Jamie Bell as Bernie Taupin<br />
Richard Madden as John Reid<br />
Bryce Dallas Howard as Sheila Dwight<br />
Gemma Jones as Ivy, Elton's grandmother
</p>
</div>
<div class="bookbtn">
<!-- window.open('ticket-booking.html','_blank'); -->
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->
</div>
</div>
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/m2.jpg" alt="">
</figure>
<a href=".Doctorsleep" data-toggle="modal">
<div class="box-content">
<h3 class="title">Doctor Sleep</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 2 Hr 32min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade Doctorsleep" id="myModal" tabindex="-1" role="dialog"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/m2.jpg" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :October 21, 2019 </h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
Doctor Sleep is a 2019 American supernatural horror film written and
directed by Mike Flanagan. It is based on the 2013 novel of the same
name by Stephen King, a sequel to King's 1977 novel The Shining. The
film, which also serves as a direct sequel to the 1980 film adaptation
of The Shining, directed by Stanley Kubrick, is set several decades
after the events of the original and combines elements of the 1977 novel
as well. Ewan McGregor plays the lead role as Danny Torrance, a man with
psychic abilities who struggles with childhood trauma. Rebecca Ferguson,
Kyliegh Curran, and Cliff Curtis have supporting roles.[6][7] In the
film, Dan Torrance, now an adult, must protect a young girl with similar
powers from a cult known as the True Knot, whose members prey on
children who possess the shining to extend their own lives.
</p>
<h4>Star Cast</h4>
<p>
Ewan McGregor as Danny Torrance<br />
Rebecca Ferguson as Rose the Hat<br />
Cliff Curtis as Billy Freeman<br />
Carl Lumbly as Dick Hallorann<br />
Zahn McClarnon as Crow Daddy
</p>
</div>
<div class="bookbtn">
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->
</div>
</div>
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/ks1.png" alt="">
</figure>
<a href=".kabir" data-toggle="modal">
<div class="box-content">
<h3 class="title">Kabir Singh</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 2 Hr 52min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade kabir" id="myModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/ks1.png" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :21 June 2019 </h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
Kabir Singh is a 2019 Indian Hindi-language romantic drama film written
and directed by Sandeep Reddy Vanga and jointly produced by Bhushan
Kumar, Murad Khetani, Krishan Kumar Ashwin Varde and co-produced by
Vinod Bhanushali under T-Series Films and Cine1 Studios. A remake of
Vanga's own Telugu film Arjun Reddy (2017), it stars Shahid Kapoor in
the titular role as a surgeon who spirals into self-destruction when his
girlfriend, Preeti, played by Kiara Advani, marries someone else. Adil
Hussain, Nikita Dutta, Arjan Bajwa, Suresh Oberoi, Dolly Minhas, Suparna
Marwah, Anurag Arora, Soham Majumdar, Kunal Thakur, Anusha Sampath, Amit
Sharma and Kamini Kaushal feature in supporting roles.
</p>
<h4>Star Cast</h4>
<p>
Shahid Kapoor as Dr Kabir Rajdheer Singh<br />
Kiara Advani as Dr Preeti Sikka<br />
Soham Majumdar as Dr Shiva<br />
Arjan Bajwa as Karan Rajdheer Singh, Kabir's brother<br />
Nikita Dutta as Jiah Sharma
</p>
</div>
<div class="bookbtn">
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->
</div>
</div>
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/m9.jpg" alt="">
</figure>
<a href=".Joker" data-toggle="modal">
<div class="box-content">
<h3 class="title">Joker</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 2 Hr 2min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade Joker" id="myModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/m9.jpg" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :October 4, 2019 </h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
Joker is a 2019 American psychological thriller film directed and
produced by Todd Phillips, who co-wrote the screenplay with Scott
Silver. The film, based on DC Comics characters, stars Joaquin Phoenix
as The Joker and provides an alternative origin story for the character.
Set in 1981, it follows Arthur Fleck, a failed clown and stand-up
comedian whose descent into insanity and nihilism inspires a violent
counter-cultural revolution against the wealthy in a decaying Gotham
City. Robert De Niro, Zazie Beetz, Frances Conroy, Brett Cullen, Glenn
Fleshler, Bill Camp, Shea Whigham, and Marc Maron appear in supporting
roles. Joker was produced by Warner Bros. Pictures, DC Films, and Joint
Effort, in association with Bron Creative and Village Roadshow Pictures,
and distributed by Warner Bros.
</p>
<h4>Star Cast</h4>
<p>
Joaquin Phoenix as Arthur Fleck / Joker<br />
Robert De Niro as Murray Franklin<br />
Zazie Beetz as Sophie Dumond<br />
Frances Conroy as Penny Fleck<br />
</p>
</div>
<div class="bookbtn">
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->
</div>
</div>
</div>
<!-- ***********************************kids Section ************************************** -->
<div class="w3l-title-grids">
<div class="headerhny-left">
<h3 class="hny-title">Kids</h3>
</div>
<div class="headerhny-right text-lg-right">
<h4><a class="show-title" href="movies.html">Show all</a></h4>
</div>
</div>
<div class="w3l-populohny-grids">
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/tzp.png" alt="">
</figure>
<a href=".tzp" data-toggle="modal">
<div class="box-content">
<h3 class="title">Taare Zameen Par</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 2 Hr 44min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade tzp" id="myModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/tzp.png" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :21 December 2007 </h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
Taare Zameen Par (titled Little Stars on Earth internationally) is a
2007 Indian Hindi-language drama film produced and directed by Aamir
Khan. The film explores the life and imagination of Ishaan, an
8-year-old dyslexic child. Although he excels in art, his poor academic
performance leads his parents to send him to a boarding school. Ishaan's
new art teacher suspects that he is dyslexic and helps him to overcome
his reading disorder. Darsheel Safary stars as 8-year-old Ishaan, and
Aamir Khan plays his art teacher.
</p>
<h4>Star Cast</h4>
<p>
Darsheel Safary as Ishaan 'Inu' Awasthi<br />
Aamir Khan as Ram Shankar Nikumbh<br />
Tanay Chheda as Rajan Damodran<br />
Tisca Chopra as Maya Awasthi<br />
Vipin Sharma as Nandkishore Awasthi
</p>
</div>
<div class="bookbtn">
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->
</div>
</div>
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/cp.png" alt="">
</figure>
<a href=".Chillarparty" data-toggle="modal">
<div class="box-content">
<h3 class="title">Chillar Party</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 1 Hr 59min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade Chillarparty" id="myModal" tabindex="-1" role="dialog"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/cp.png" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :8 July 2011 </h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
Chillar Party is a 2011 Indian family comedy
film directed by Nitesh Tiwari and Vikas Bahl and produced by Ronnie
Screwvala under UTV Motion Pictures and Salman Khan under his SKBH
Productions (Salman Khan Being Human Productions).The film has a
multiple-cast of debuting child-artists particularly named after movies
such as, "Silencer", "Aflatoon", "Shaolin" etc. It also features Ranbir
Kapoor in an item-number.Chillar Party won the 2011 National Film
Award for Best Children's Film.
</p>
<h4>Star Cast</h4>
<p>
Irfan Khan as Fatka<br />
Sanath Menon as Arjun / Encyclopedia<br />
Rohan Grover as Rishabh / Ronny / Ramashanker Iyer / Akram<br />
Naman Jain as Balwan Jhangiani / Jhangiya<br />
Araav Khanna as Aflatoon
</p>
</div>
<div class="bookbtn">
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->
</div>
</div>
<div class="item vhny-grid">
<div class="box16 mb-0">
<figure>
<img class="img-fluid" src="assets/images/ganesha.png" alt="">
</figure>
<a href=".ganesha" data-toggle="modal">
<div class="box-content">
<h3 class="title">Ganesha</h3>
<h4> <span class="post"><span class="fa fa-clock-o"> </span> 3 Hr 10min
</span>
<span class="post fa fa-heart text-right"></span>
</h4>
</div>
</a>
<!-- Modal -->
<div class="modal fade ganesha" id="myModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="mymodalcontent">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLongTitle">DETAILS</h4>
<button type="button" class="closebtn" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="dynamic-content">
<img src="assets/images/ganesha.png" class="img-fluid modalimg" alt="" />
<p>
<h3>Release Date :6 July 2007 </h3>
<h3>Venue :Cg Road </h3>
</p>
<h4>About Movie</h4>
<p>
My Friend Ganesha is a 2008 Indian Hindi-language film written and
directed by Rajiv S Ruia and produced by Deepak Bhanushali, Manish
Ruparel, Raman Trikha, Mitesh Mehta, and Ronak Bhagat. It stars Ahsaas
Channa, Kiran Janjani, Sheetal Shah and Upasana Singh.
</p>
<h4>Star Cast</h4>
<p>
Ahsaas Channa as Ashu<br />
Kiran Janjani as Aditya, Ashu's father<br />
Sheetal Shah as Aarti, Ashu's mother<br />
Arun Bakshi as Ashu's Principal<br />
Mushtaq Khan as Police Inspector
</p>
</div>
<div class="bookbtn">
<button type="button" class="btn btn-success"
onclick="location.href='ticket-booking.html';">Book</button>
</div>
</div>
</div>
</div>
<!-- modal end -->