-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainpage.html
720 lines (631 loc) · 56.5 KB
/
mainpage.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
<!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>JAVA - Main page</title>
<!-- CSS styles of the website -->
<link rel="stylesheet" href="css/style.css">
<!-- css style of navigation bar by student 2-->
<link rel="stylesheet" href="css/navbar.css">
<!-- css styles from external websites -->
<link rel="stylesheet" href="css/extra_css/all.min.css">
<link rel="stylesheet" href="css/extra_css/magnific-popup.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css" />
<!-- scripts from external websites -->
<script src="js/extra_js/jquery.min.js"></script>
<!-- <script src="js/extra_js/jquery.magnific-popup.min.js"></script> -->
<script src="js/extra_js/swiper-bundle.min.js"></script>
<script src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script>
</head>
<body>
<header>
<img class="logo" src="imgs/logo.svg" alt="logo" autocomplete="off">
<div class="search-container">
<form action="/action_page.php" class="search">
<input type="text" placeholder="Search.." name="search" autocomplete="off">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
<nav>
<ul class="nav-links">
<li><a href="../mainpage.html">Home</a></li>
<li><a href="../aboutus/aboutus.html">About Us</a></li>
<li><a href="../thumbnail/thumbnailimages.html">Images</a></li>
<li><a href="../quiz/quiz.html">quiz</a></li>
<li><a href="../sitemap/sitemap.html">sitemap</a></li>
<li><a href="../products/products.html">shop</a></li>
<li><a href="../events/events.html">Events</a></li>
<li><a href="../query/query.html">feedback</a></li>
</ul>
</nav>
</header>
<!-- landing page using swiper.js -->
<section class="bg-head">
<div class="slider-cc">
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div>
<div class="content-txt-head">
<h5>Film</h5>
<h2>INCEPTION :</h2>
<h3>Christoper Nolan</h3>
<p>Action | Sci-fi - 2h 12min</p>
<p>English - 2010</p>
<div class="trailer-head">
<a href="https://www.youtube.com/watch?v=YoHD9XEInc0" class="popup-youtube"><i class="fa-regular fa-circle-play"></i>
Watch Trailer</a>
</div>
</div>
</div>
<img src="imgs/main-page/slider1.png" />
</div>
<div class="swiper-slide">
<div>
<div class="content-txt-head">
<h5>Film</h5>
<h2>JOKER :</h2>
<h3>Todd Phillips</h3>
<p>Crime | Drama - 2h 2min</p>
<p>English - 2019</p>
<div class="trailer-head">
<a href="https://www.youtube.com/watch?v=cBFq_6Zj2aA" class="popup-youtube"><i class="fa-regular fa-circle-play"></i>
Watch Trailer</a>
</div>
</div>
</div>
<img src="imgs/main-page/slider2.png" />
</div>
<div class="swiper-slide">
<div>
<div class="content-txt-head">
<h5>Film</h5>
<h2>JOHN WICK :</h2>
<h3>Chad Stahelski</h3>
<p>Action | Thriller - 2h 11min</p>
<p>English - 2019</p>
<div class="trailer-head">
<a href="https://www.youtube.com/watch?v=C0BMx-qxsP4" class="popup-youtube"><i class="fa-regular fa-circle-play"></i>
Watch Trailer</a>
</div>
</div>
</div>
<img src="imgs/main-page/slider3.png" />
</div>
<div class="swiper-slide">
<div>
<div class="content-txt-head">
<h5>Film</h5>
<h2>THE DARK KNIGHT :</h2>
<h3>Christopher Nolan</h3>
<p>Action | Adventure - 2h 32min</p>
<p>English - 2008</p>
<div class="trailer-head">
<a href="https://www.youtube.com/watch?v=EXeTwQWrcwY" class="popup-youtube"><i class="fa-regular fa-circle-play"></i>
Watch Trailer</a>
</div>
</div>
</div>
<img src="imgs/main-page/slider6.png" />
</div>
<div class="swiper-slide">
<div>
<div class="content-txt-head">
<h5>Film</h5>
<h2>BLADE RUNNER 2049 :</h2>
<h3>Denis Villeneuve</h3>
<p>Sci-fi | Thriller - 2h 49min</p>
<p>English - 2017</p>
<div class="trailer-head">
<a href="https://www.youtube.com/watch?v=gCcx85zbxz4" class="popup-youtube"><i class="fa-regular fa-circle-play"></i>
Watch Trailer</a>
</div>
</div>
</div>
<img src="imgs/main-page/slider5.png" />
</div>
<div class="swiper-slide">
<div>
<div class="content-txt-head">
<h5>Film</h5>
<h2>INTERSTELLAR :</h2>
<h3>Christopher Nolan</h3>
<p>Sci-Fi | Adventure - 2h 49min</p>
<p>English - 2014</p>
<div class="trailer-head">
<a href="https://www.youtube.com/watch?v=zSWdZVtXT7E" class="popup-youtube"><i class="fa-regular fa-circle-play"></i>
Watch Trailer</a>
</div>
</div>
</div>
<img src="imgs/main-page/slider4.png" />
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<!-- <div class="swiper-pagination"></div> -->
</div>
</div>
</section>
<!-- description about the webpage and a slider -->
<section class="abt">
<div class="description">
<div class="col-8">
<h3>J.A.V.A Entertainment</h3>
<p>Here you can browse and buy the latest movies in excellent 720p, 1080p, 4K, and 8K quality. We provide the best HD movies you can buy for the cheapest prices and is the only platform where 8K quality movies are available online. In our
shop you can also purchase items like autographed T-Shirts, shoes and even the latest movie releases. We also provide a mini quiz to test the knowledge of our beloved movie nerds and an additional site where people can view movie images
and find out more information about them. At J.A.V.A we strive to be the best online platform where people could have some entertain and joy in their lives. We also contribute 10% of our profits towards the Texas Children’s Hospital
in Houston. Our main objective is to bring happiness towards all people and help them relax after a long day. </p>
</div>
<div class="col-4">
<div class="bg-description-img">
<!-- <img src="imgs/main-page/description.jpg" alt=""> -->
</div>
</div>
</div>
</section>
<!-- movies slider -->
<section>
<div class="mini-movie">
<h3><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<g><path d="M99,622.5c7.3-29.9,25.5-77.7,54.7-143.3c29.2-65.6,45.2-118.9,48.1-159.7c28.4,52.5,44.8,105.4,49.2,158.6C359,344,415.1,187.9,419.5,10c7.3,4.4,16.4,10.6,27.3,18.6c10.9,8,32.1,24.4,63.4,49.2c31.4,24.8,58.3,51.8,80.9,80.9c22.6,29.2,44.8,64.2,66.7,105c21.9,40.8,34.3,83.9,37.2,129.1c10.9-26.3,17.9-54.7,20.8-85.3s-0.4-60.2-9.8-88.6c10.9,8.8,25.9,23.3,44.8,43.8s39.4,47.4,61.3,80.9c21.9,33.5,42.3,69.6,61.3,108.3c19,38.6,30.3,81.7,33.9,129.1s0.4,93.7-9.8,138.9c-10.2,45.2-36.5,91.5-78.8,138.9C776.4,906.1,721,949.9,652.5,990c46.7-93.3,55.8-194.7,27.3-304.1c-28.4-109.4-84.6-192.9-168.4-250.5c7.3,31.4,3.3,82.8-12,154.2c-15.3,71.5-39,126.1-71.1,164.1c5.1-45.9,6.6-83.1,4.4-111.6c-2.2-28.4-6.6-49.6-13.1-63.4l-10.9-19.7c-8.8,51-30.6,102.4-65.6,154.2c-19,27-33.2,51.8-42.7,74.4c-9.5,22.6-12.8,51.8-9.8,87.5c2.9,35.7,13.9,74,32.8,114.8c-98.4-55.4-164.4-111.6-198-168.4C91.7,764.7,83,698.7,99,623.6L99,622.5z"/></g>
</svg>Trending</h3>
<div class="swiper swiper-mg mySwiper2">
<div class="swiper-wrapper ">
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini1.png" />
<div class="info">
<h1>JOKER</h1>
<span class="director-nm">Todd Philipps</span><br>
<span class="year-info">2019</span><br>
<p>when society shuns him and brands him as a freak, he decides to embrace the life of crime and chaos.</p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=zAGVQLHvwOY" class="popup-youtube" id="videolink"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini2.png" />
<div class="info">
<h1>Godzilla</h1>
<span class="director-nm">Adam Wingard</span><br>
<span class="year-info">2021</span><br>
<p>King Kong is transported out of his containment zone after Godzilla resurfaces and creates mayhem.</p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=odM92ap8_c0" class="popup-youtube" id="videolink2"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini3.png" />
<div class="info">
<h1>Men in Black</h1>
<span class="director-nm">F. Gary Gray</span><br>
<span class="year-info">2019</span><br>
<p>Agent M, a probationary member of the MIB, teams up with Agent H and uncovers a sinister plot</p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=BV-WEb2oxLk" class="popup-youtube" id="videolink3"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini4.png" />
<div class="info">
<h1>The U.N.C.L.E.</h1>
<span class="director-nm">Gu Ritchie</span><br>
<span class="year-info">2015</span><br>
<p>Napoleon Solo, a CIA agent, and Illya Kuryakin, a KGB operative, must set aside their differences and work.</p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=-x08iNZ8Mfc" class="popup-youtube" id="videolink4"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini5.png" />
<div class="info">
<h1>Despicable Me</h1>
<span class="director-nm">Chris Renaud</span><br>
<span class="year-info">2019</span><br>
<p>Now that Gru has forsaken a life of crime to raise Margo, Agnes and Edith, to figure his new family. </p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=zzCZ1W_CUoI" class="popup-youtube" id="videolink5"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini6.png" />
<div class="info">
<h1>Harry Potter</h1>
<span class="director-nm">David Yates</span><br>
<span class="year-info">2007</span><br>
<p>Harry Potter and Dumbledore's warning about the return of Lord Voldemort is not heeded by the wizard.</p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=VyHV0BRtdxo" class="popup-youtube" id="videolink6"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
</div>
<!-- <div class="swiper-pagination"></div> -->
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
<!-- ======================================= -->
<div class="mini-movie sec-2-mini">
<h3><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<g><g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"><path d="M1618.1,4981.7c-134-82.3-124.4,325.5-124.4-4895.3c0-4623.4,1.9-4713.4,38.3-4776.6c53.6-91.9,153.2-114.9,260.4-57.4c44,23,735.2,578.2,1535.4,1231s1489.4,1209.9,1533.5,1234.8c91.9,55.5,166.6,57.4,256.5,11.5c36.4-17.2,719.8-564.8,1518.2-1215.7c798.3-650.9,1491.4-1209.9,1541.1-1240.6c95.7-59.4,147.4-67,222.1-34.5c114.9,53.6,107.2-296.7,107.2,4864.6c0,4531.5-1.9,4719.1-34.5,4780.4c-19.2,36.4-65.1,82.3-101.5,101.5c-61.3,32.5-204.9,34.5-3377.1,34.5C1704.3,5020,1681.3,5020,1618.1,4981.7z M5092.9,3670.3c40.2-74.7,86.1-212.5,436.5-1296.1l164.6-511.2l970.6-5.8c1022.3-5.7,1056.8-9.6,1056.8-91.9c0-65.1-122.5-162.7-869.2-698.8c-394.4-283.3-717.9-524.6-719.8-536c0-9.6,124.4-402,277.6-871.1c298.7-918.9,308.2-951.5,289.1-1024.2c-15.3-57.4-68.9-63.2-164.6-13.4c-36.4,17.2-388.6,268-783,557.1c-394.4,287.2-725.6,526.5-737.1,530.3c-11.5,3.8-350.3-233.5-754.3-526.5c-731.3-532.2-825.1-595.4-901.7-595.4c-47.9,0-68.9,67-51.7,158.9c5.7,34.5,135.9,446.1,289.1,915.1c153.2,471,277.6,863.4,277.6,871.1c-1.9,9.6-308.2,237.4-683.5,505.4c-700.7,503.5-905.5,668.1-905.5,729.4c0,80.4,38.3,84.2,1056.8,90l970.6,5.8l59.3,185.7C4830.6,3490.4,4888,3655,4951.2,3733.5C4985.7,3777.5,5048.8,3750.7,5092.9,3670.3z"/></g></g>
</svg>Featured Collections</h3>
<div class="swiper swiper-mg mySwiper3 sec-2-mini">
<div class="swiper-wrapper ">
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini7.png" />
<div class="info">
<h1>Aladdin</h1>
<span class="director-nm">Guy Ritchie</span><br>
<span class="year-info">2019</span><br>
<p>Aladdin, a kind thief, woos Jasmine, the princess of Agrabah, with the help of Genie. </p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=foyufD52aog" class="popup-youtube"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini8.png" />
<div class="info">
<h1>F9</h1>
<span class="director-nm">Justin Lin</span><br>
<span class="year-info">2021</span><br>
<p>Dominic Toretto is forced to put his retirement on hold when Cipher, the dangerous cyberterrorist.</p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=aSiDu3Ywi8E" class="popup-youtube"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini9.png" />
<div class="info">
<h1>Morbius</h1>
<span class="director-nm">Daniel Espinosa</span><br>
<span class="year-info">2022</span><br>
<p>Biochemist Michael Morbius tries to cure himself of a rare blood disease, but when his experiment goes wrong.</p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=oZ6iiRrz1SY" class="popup-youtube"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini10.png" />
<div class="info">
<h1>Dora</h1>
<span class="director-nm">James Bobin</span><br>
<span class="year-info">2019</span><br>
<p>Dora and her group of friends, including Boots the Monkey, go to the forest to look for the lost city of gold.</p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=gUTtJjV852c" class="popup-youtube"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini11.png" />
<div class="info">
<h1>Lord of the Rings</h1>
<span class="director-nm">Peter Jackson</span><br>
<span class="year-info">2001</span><br>
<p>A young hobbit, Frodo, who has found the One Ring that belongs to the Dark Lord Sauron, begins his journey. </p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=v7v1hIkYH24" class="popup-youtube"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card-mini">
<img src="imgs/main-page/mini12.png" />
<div class="info">
<h1>Central Intelligence</h1>
<span class="director-nm">Rawson Marshall</span><br>
<span class="year-info">2016</span><br>
<p>Accountant Calvin Joyner's life changes drastically after Bob Stone, his old classmate from high school.</p>
<div class="watch-info"><a href="https://www.youtube.com/watch?v=EW1nMFfYGPs" class="popup-youtube"><i class="fa-solid fa-clock"></i>Watch Trailer</div></a>
<div class="watch-info"><a href="products/products.html"><i class="fa-solid fa-film"></i>Watch Movie</div></a>
</div>
</div>
</div>
</div>
<!-- <div class="swiper-pagination"></div> -->
</div>
<div class="swiper-button-next xxx3"></div>
<div class="swiper-button-prev xxt"></div>
</div>
</section>
<!-- videos and trailers -->
<section>
<div class="videos">
<h3><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<g><path d="M873.4,413.6H352.2L863,252.1c39.7-12.5,61.9-55.1,49.3-94.8l-29.9-94.5C869.9,23.1,827.4,1,787.6,13.5L97,231.8c-39.7,12.5-61.8,55.1-49.3,94.8l29.9,94.5c2.4,7.4,5.8,14.3,10,20.3C74.7,456,66.8,475,66.8,495.9v411.8c0,45.4,36.9,82.3,82.3,82.3h724.2c45.4,0,82.3-36.9,82.3-82.3V495.9C955.8,450.5,918.8,413.6,873.4,413.6z M817.5,74.9c2.4,1.6,4.4,3.8,5.3,6.8l29.9,94.5c2.2,6.8-1.7,14.2-8.5,16.4l-46.6,14.7L817.5,74.9z M639.5,125.9l79.3-25L698,238.7l-79.3,25.1L639.5,125.9z M460.6,182.4l79.3-25.1l-20.7,137.9l-79.3,25.1L460.6,182.4z M281.8,239l79.3-25.1l-20.7,137.8L261,376.8L281.8,239z M115.9,291.4l66.3-21l-20.7,137.9l-7.8,2.5c-6.9,2.2-14.2-1.7-16.4-8.5l-29.9-94.5C105.2,300.9,109,293.6,115.9,291.4z M879.7,907.7c0,3.5-2.8,6.3-6.3,6.3H149.2c-3.5,0-6.3-2.8-6.3-6.3V495.9c0-3.5,2.8-6.3,6.3-6.3h724.2c3.5,0,6.3,2.8,6.3,6.3V907.7z"/><path d="M475.4,561.1c-12.4-10.7-31-13.8-47.2-8.1c-16.2,5.8-26.7,19.3-26.7,34.4v228.9c0,15,10.5,28.6,26.7,34.4c5.4,1.9,11,2.8,16.6,2.8c11.3,0,22.3-3.8,30.6-10.9l133.1-114.5c16.9-14.5,16.9-38.1,0-52.7L475.4,561.1z"/></g>
</svg>Trailers & Video Clips</h3>
<div class="swiper mySwiper4">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a href="https://www.youtube.com/watch?v=l919rsqOU3I" class="popup-youtube">
<img src="imgs/main-page/thumbnail0.jpg" />
</a>
<div class="details-vid">
<h3>Infinity War Cast Surprises Avengers Fans</h3>
<div class="watch-vid">
<div class="wrap-vid">
<a href="https://www.youtube.com/watch?v=l919rsqOU3I" class="popup-youtube">
<div class="contxt-vid">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<g><path d="M500,10C229.4,10,10,229.4,10,500c0,270.6,219.4,490,490,490c270.6,0,490-219.4,490-490C990,229.4,770.6,10,500,10z M500,946.2C253.5,946.2,53.8,746.4,53.8,500C53.8,253.6,253.5,53.8,500,53.8c246.5,0,446.2,199.8,446.2,446.2C946.2,746.4,746.5,946.2,500,946.2z"/><path d="M386.6,258.6l301.9,236.5L386.6,733.5V258.6z"/></g>
</svg>
<p>WATCH <br> <span>NOW</span> </p>
</div>
</a>
</div>
<a href="https://www.youtube.com/watch?v=6ZfuNTqbHE8" class="popup-youtube">
<div class="contxt-vid"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
<g><g transform="translate(0.000000,511.000000) scale(0.100000,-0.100000)"><path d="M233.5,3787.2c-22.6-6.2-61.6-28.8-86.3-53.4l-47.3-41.1V122c0-1964.1,6.2-3585.1,12.3-3603.6c37-96.6-197.2-92.5,4887.7-92.5c5087,0,4850.7-4.1,4887.7,94.5c6.2,18.5,12.3,1637.5,12.3,3599.5v3566.6l-51.4,53.4l-51.4,51.4l-4762.3,2.1C2417.5,3795.4,256.1,3793.4,233.5,3787.2z M9561,812.3v-2629.8H5000H439l-6.2,2609.2c-2.1,1436.1,0,2621.5,6.2,2635.9c6.2,20.5,930.7,24.7,4565.1,20.5L9561,3442V812.3z M9550.7-2690.7v-534.2H5000H449.3v534.2v534.2H5000h4550.7V-2690.7z"/><path d="M4186.4,1646.4l-49.3-39l-6.2-864.9l-6.2-865l51.4-51.4c32.9-32.9,74-51.4,115.1-51.4c61.6,0,1633.3,770.4,1711.4,838.2c39,34.9,47.2,147.9,14.4,211.6c-30.8,53.4-1643.6,860.8-1723.7,860.8C4260.4,1685.4,4213.1,1666.9,4186.4,1646.4z M5480.8,728c6.2-6.2-973.8-501.3-994.4-501.3c-6.2,0-10.3,226-10.3,503.4v503.4l499.2-248.6C5248.6,847.2,5476.6,732.1,5480.8,728z"/><path d="M613.6-2690.7V-2855h3071.5h3071.5v164.4v164.4H3685.1H613.6V-2690.7z"/></g></g>
</svg>
<p><span>WATCH</span> <br> TRAILER</p>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<a href="https://www.youtube.com/watch?v=Qk22D_osjQo" class="popup-youtube">
<img src="imgs/main-page/thumbnail.jpg" />
</a>
<div class="details-vid">
<h3>Spider-Man Cast on Spoilers</h3>
<div class="watch-vid">
<div class="wrap-vid">
<a href="https://www.youtube.com/watch?v=Qk22D_osjQo" class="popup-youtube">
<div class="contxt-vid">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
<g><path d="M500,10C229.4,10,10,229.4,10,500c0,270.6,219.4,490,490,490c270.6,0,490-219.4,490-490C990,229.4,770.6,10,500,10z M500,946.2C253.5,946.2,53.8,746.4,53.8,500C53.8,253.6,253.5,53.8,500,53.8c246.5,0,446.2,199.8,446.2,446.2C946.2,746.4,746.5,946.2,500,946.2z"/><path d="M386.6,258.6l301.9,236.5L386.6,733.5V258.6z"/></g>
</svg>
<p>WATCH <br> <span>NOW</span> </p>
</div>
</a>
</div>
<a href="https://www.youtube.com/watch?v=JfVOs4VSpmA" class="popup-youtube">
<div class="contxt-vid"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
<g><g transform="translate(0.000000,511.000000) scale(0.100000,-0.100000)"><path d="M233.5,3787.2c-22.6-6.2-61.6-28.8-86.3-53.4l-47.3-41.1V122c0-1964.1,6.2-3585.1,12.3-3603.6c37-96.6-197.2-92.5,4887.7-92.5c5087,0,4850.7-4.1,4887.7,94.5c6.2,18.5,12.3,1637.5,12.3,3599.5v3566.6l-51.4,53.4l-51.4,51.4l-4762.3,2.1C2417.5,3795.4,256.1,3793.4,233.5,3787.2z M9561,812.3v-2629.8H5000H439l-6.2,2609.2c-2.1,1436.1,0,2621.5,6.2,2635.9c6.2,20.5,930.7,24.7,4565.1,20.5L9561,3442V812.3z M9550.7-2690.7v-534.2H5000H449.3v534.2v534.2H5000h4550.7V-2690.7z"/><path d="M4186.4,1646.4l-49.3-39l-6.2-864.9l-6.2-865l51.4-51.4c32.9-32.9,74-51.4,115.1-51.4c61.6,0,1633.3,770.4,1711.4,838.2c39,34.9,47.2,147.9,14.4,211.6c-30.8,53.4-1643.6,860.8-1723.7,860.8C4260.4,1685.4,4213.1,1666.9,4186.4,1646.4z M5480.8,728c6.2-6.2-973.8-501.3-994.4-501.3c-6.2,0-10.3,226-10.3,503.4v503.4l499.2-248.6C5248.6,847.2,5476.6,732.1,5480.8,728z"/><path d="M613.6-2690.7V-2855h3071.5h3071.5v164.4v164.4H3685.1H613.6V-2690.7z"/></g></g>
</svg>
<p><span>WATCH</span> <br> TRAILER</p>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<a href="https://www.youtube.com/watch?v=BH0KpJYQN_4" class="popup-youtube">
<img src="imgs/main-page/thumbnail2.jpg" />
</a>
<div class="details-vid">
<h3>The Batman On The Graham Norton Show</h3>
<div class="watch-vid">
<div class="wrap-vid">
<a href="https://www.youtube.com/watch?v=BH0KpJYQN_4" class="popup-youtube">
<div class="contxt-vid">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
<g><path d="M500,10C229.4,10,10,229.4,10,500c0,270.6,219.4,490,490,490c270.6,0,490-219.4,490-490C990,229.4,770.6,10,500,10z M500,946.2C253.5,946.2,53.8,746.4,53.8,500C53.8,253.6,253.5,53.8,500,53.8c246.5,0,446.2,199.8,446.2,446.2C946.2,746.4,746.5,946.2,500,946.2z"/><path d="M386.6,258.6l301.9,236.5L386.6,733.5V258.6z"/></g>
</svg>
<p>WATCH <br> <span>NOW</span> </p>
</div>
</a>
</div>
<a href="https://www.youtube.com/watch?v=mqqft2x_Aa4" class="popup-youtube">
<div class="contxt-vid"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
<g><g transform="translate(0.000000,511.000000) scale(0.100000,-0.100000)"><path d="M233.5,3787.2c-22.6-6.2-61.6-28.8-86.3-53.4l-47.3-41.1V122c0-1964.1,6.2-3585.1,12.3-3603.6c37-96.6-197.2-92.5,4887.7-92.5c5087,0,4850.7-4.1,4887.7,94.5c6.2,18.5,12.3,1637.5,12.3,3599.5v3566.6l-51.4,53.4l-51.4,51.4l-4762.3,2.1C2417.5,3795.4,256.1,3793.4,233.5,3787.2z M9561,812.3v-2629.8H5000H439l-6.2,2609.2c-2.1,1436.1,0,2621.5,6.2,2635.9c6.2,20.5,930.7,24.7,4565.1,20.5L9561,3442V812.3z M9550.7-2690.7v-534.2H5000H449.3v534.2v534.2H5000h4550.7V-2690.7z"/><path d="M4186.4,1646.4l-49.3-39l-6.2-864.9l-6.2-865l51.4-51.4c32.9-32.9,74-51.4,115.1-51.4c61.6,0,1633.3,770.4,1711.4,838.2c39,34.9,47.2,147.9,14.4,211.6c-30.8,53.4-1643.6,860.8-1723.7,860.8C4260.4,1685.4,4213.1,1666.9,4186.4,1646.4z M5480.8,728c6.2-6.2-973.8-501.3-994.4-501.3c-6.2,0-10.3,226-10.3,503.4v503.4l499.2-248.6C5248.6,847.2,5476.6,732.1,5480.8,728z"/><path d="M613.6-2690.7V-2855h3071.5h3071.5v164.4v164.4H3685.1H613.6V-2690.7z"/></g></g>
</svg>
<p><span>WATCH</span> <br> TRAILER</p>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<a href="https://www.youtube.com/watch?v=mublEkFXN_M" class="popup-youtube">
<img src="imgs/main-page/thumbnail3.jpg" />
</a>
<div class="details-vid">
<h3>UNCHARTED - From Game to Movie</h3>
<div class="watch-vid">
<div class="wrap-vid">
<a href="https://www.youtube.com/watch?v=mublEkFXN_M" class="popup-youtube">
<div class="contxt-vid">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
<g><path d="M500,10C229.4,10,10,229.4,10,500c0,270.6,219.4,490,490,490c270.6,0,490-219.4,490-490C990,229.4,770.6,10,500,10z M500,946.2C253.5,946.2,53.8,746.4,53.8,500C53.8,253.6,253.5,53.8,500,53.8c246.5,0,446.2,199.8,446.2,446.2C946.2,746.4,746.5,946.2,500,946.2z"/><path d="M386.6,258.6l301.9,236.5L386.6,733.5V258.6z"/></g>
</svg>
<p>WATCH <br> <span>NOW</span> </p>
</div>
</a>
</div>
<a href="https://www.youtube.com/watch?v=eHp3MbsCbMg" class="popup-youtube">
<div class="contxt-vid"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
<g><g transform="translate(0.000000,511.000000) scale(0.100000,-0.100000)"><path d="M233.5,3787.2c-22.6-6.2-61.6-28.8-86.3-53.4l-47.3-41.1V122c0-1964.1,6.2-3585.1,12.3-3603.6c37-96.6-197.2-92.5,4887.7-92.5c5087,0,4850.7-4.1,4887.7,94.5c6.2,18.5,12.3,1637.5,12.3,3599.5v3566.6l-51.4,53.4l-51.4,51.4l-4762.3,2.1C2417.5,3795.4,256.1,3793.4,233.5,3787.2z M9561,812.3v-2629.8H5000H439l-6.2,2609.2c-2.1,1436.1,0,2621.5,6.2,2635.9c6.2,20.5,930.7,24.7,4565.1,20.5L9561,3442V812.3z M9550.7-2690.7v-534.2H5000H449.3v534.2v534.2H5000h4550.7V-2690.7z"/><path d="M4186.4,1646.4l-49.3-39l-6.2-864.9l-6.2-865l51.4-51.4c32.9-32.9,74-51.4,115.1-51.4c61.6,0,1633.3,770.4,1711.4,838.2c39,34.9,47.2,147.9,14.4,211.6c-30.8,53.4-1643.6,860.8-1723.7,860.8C4260.4,1685.4,4213.1,1666.9,4186.4,1646.4z M5480.8,728c6.2-6.2-973.8-501.3-994.4-501.3c-6.2,0-10.3,226-10.3,503.4v503.4l499.2-248.6C5248.6,847.2,5476.6,732.1,5480.8,728z"/><path d="M613.6-2690.7V-2855h3071.5h3071.5v164.4v164.4H3685.1H613.6V-2690.7z"/></g></g>
</svg>
<p><span>WATCH</span> <br> TRAILER</p>
</div>
</div>
</a>
</div>
</div>
</div>
<!-- <div class="swiper-pagination"></div> -->
</div>
</div>
</section>
<!-- opinion feedback section -->
<section>
<div class="opinio-pos">
<div class="opinion">
<h3><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<g><path d="M500,10C229.9,10,10,228.6,10,500c0,154.5,71.6,291.5,183.4,382L10,990h490c270.1,0,490-218.6,490-490C990,229.9,770.1,10,500,10z M496.2,927.2H180.9l100.5-57.8C153.2,795.3,66.5,655.8,66.5,497.5C66.5,260,258.8,67.8,496.2,67.8c237.5,0,430.9,192.2,430.9,429.7C927.2,734.9,734.9,927.2,496.2,927.2z"/><path d="M202.2,484.9c0,29.1,23.6,52.8,52.8,52.8c29.1,0,52.8-23.6,52.8-52.8s-23.6-52.8-52.8-52.8C225.9,432.2,202.2,455.8,202.2,484.9z"/><path d="M359.3,484.9c0,29.1,23.6,52.8,52.8,52.8c29.1,0,52.8-23.6,52.8-52.8s-23.6-52.8-52.8-52.8C382.9,432.2,359.3,455.8,359.3,484.9z"/><path d="M516.3,484.9c0,29.1,23.6,52.8,52.8,52.8c29.1,0,52.8-23.6,52.8-52.8s-23.6-52.8-52.8-52.8C540,432.2,516.3,455.8,516.3,484.9z"/><path d="M679.7,484.9c0,29.1,23.6,52.8,52.8,52.8s52.8-23.6,52.8-52.8s-23.6-52.8-52.8-52.8S679.7,455.8,679.7,484.9z"/></g>
</svg>Common Opinions</h3>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper mySwiper5">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="container-opinion">
<div class="card-opinion">
<div class="imgBx">
<img src="imgs/main-page/user.png" alt="image">
</div>
<div class="content-opinion">
<span class="stars"><h2>Steve Smith </h2><p>21st June 2021 </p></span>
<p> I really loved movies since when I was little. After joining the marines, I found out that movies were only showing the good stuff and I really saw the dark side of war. But I never disliked movies I still do really
like them. </p>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="container-opinion">
<div class="card-opinion">
<div class="imgBx">
<img src="imgs/main-page/user2.png" alt="image">
</div>
<div class="content-opinion">
<span class="stars"><h2>Chris Griffin </h2><p>02nd August 2020 </p></span>
<p> I have 4 girls so for me as a dad it is hard to handle them, but I have seen that if I put frozen on the tv for them they are just like puppets I can feed them and dress them easily without any of them misbehaving.
</p>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="container-opinion">
<div class="card-opinion">
<div class="imgBx">
<img src="imgs/main-page/user3.png" alt="image">
</div>
<div class="content-opinion">
<span class="stars"><h2>Hailey Styles </h2><p>03rd March 2022 </p></span>
<p>I am always tired after work, and I have no time to relax after I come home but sometimes, I watch movies while having dinner and I feel relax and stress-free at that moment. I really love for them to entertain
me when I am having a bad day. </p>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="container-opinion">
<div class="card-opinion">
<div class="imgBx">
<img src="imgs/main-page/user4.png" alt="image">
</div>
<div class="content-opinion">
<span class="stars"><h2>Coris Keeves </h2><p>10th April 2022 </p></span>
<p> I am a college student at Colombia University. I am majoring in theater. Movies have helped me during my studies and given me many ideas and ways on how to improve during my learnings.I have watched movies throughout
my life. </p>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="swiper-pagination"></div> -->
</div>
</div>
</div>
<button onclick="topFunction()" id="top" title="Go to top"><i class="arrow2 up"></i></button>
</section>
<script>
$('#videolink').magnificPopup({
type: 'inline',
midClick: true
})
</script>
<!-- footer -->
<footer class="footer">
<div class="container-footer">
<div class="row-footer">
<div class="footer-col">
<h4>Quick Links</h4>
<ul>
<li><a href="mainpage.html">Home</a></li>
<li><a href="aboutus/aboutus.html">About Us</a></li>
<li><a href="sitemap/sitemap.html">Sitemap</a></li>
<li><a href="query/query.html">Feedback</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Destinations</h4>
<ul>
<li><a href="thumbnail/thumbnailimages.html">Images</a></li>
<li><a href="products/products.html">Shop</a></li>
<li><a href="events/events.html">Events</a></li>
<li><a href="quiz/quiz.html">Quiz</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Page Editors</h4>
<ul>
<li><a href="students/student1.html">Student 1</a></li>
<li><a href="students/student2.html">Student 2</a></li>
<li><a href="students/student3.html">Student 3</a></li>
<li><a href="students/student4.html">Student 4</a></li>
</ul>
</div>
<div class="footer-col">
<h4>subscribe</h4>
<div class="social-links">
<form>
<label for="email"></label>
<input class="la_2" type="email" id="email" name="email" placeholder="Enter the Email">
<input class="la" type="submit" name="SEND" value="SEND">
</form>
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-pinterest"></i></a>
</div>
</div>
</div>
<hr>
<div class="footer-total">
<div class="footer-col">
<div class="Text">
<ul>
<li><a href="students/mainstudents.html"> Page Developer </a></li>
</ul>
</div>
</div>
<div class="footer-col">
<div class="group">
<ul>
<li><a href="#"> Group A7 </a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- external javascript file -->
<script src="js/script.js"></script>
<script src="js/extra_js/jquery.min.js"></script>
<script src="js/extra_js/jquery.magnific-popup.min.js"></script>
</body>
</html>