forked from QAZIMAAZARSHAD/Movie-Streaming-Website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fantasy.html
689 lines (602 loc) · 32 KB
/
fantasy.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>ApnaTheatre.com</title>
<link rel="shortcut icon" href="./Images/Logo/Title.jpeg" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link href="./static/style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="static/bootstrap.min.css">
<link rel="stylesheet" href="static/style-min.css">
<link rel="stylesheet" href="cards.css">
</head>
<!------------------------Scroll to top button------------------------------------------------>
<style>
#scrollToTopButton{
/* position: sticky; */
position:relative;
bottom: 40px;
left: 90%;
font-size: 25px;
z-index: 99;
width: 50px;
height: 50px;
background-color:red;
color:black;
border: none;
cursor: pointer;
outline: none;
padding: 6px;
border-radius: 50%;
}
#scrollToTopButton:hover, i:hover {
background-color:red;
color:white;
}
</style>
<body>
<div class="scroll-bar">
<!-- navbar starts -->
<nav class="menu navbar navbar-expand-lg navbar-light bg-dark" id="header-nav">
<div class="container-fluid">
<a class="navbar-brand" href="home.html"><img class="logo" src="Images/TheaterLogoFinal.png" alt="" width="30" height="24"></a>
<button class="navbar-toggler" style="background-color:white" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon" style="background-color: white;"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#Movies">Movies</a>
</li>
<li class="nav-item">
<a class="nav-link" href="web-series.html">Web Series</a>
</li>
<li class="nav-item">
<a class="nav-link" href="kids.html">Kids</a>
</li>
<li class="nav-item">
<a class="nav-link" href="tv.html">TV</a>
</li>
<li class="nav-item">
<a class="nav-link" href="dummy.html">Premium</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html">Contact Us</a>
</li>
</ul>
<form id="searchForm" class="d-flex">
<input class="form-control me-2" type="text" id="searchText" placeholder="Search" aria-label="Search">
<button class="btn btn-danger" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- navbar ends -->
<!-- off canva -->
<a class="btn btn-outline-danger" id="variety" data-bs-toggle="offcanvas" href="#offcanvasExample" role="button" aria-controls="offcanvasExample">
Have a Look on Various Movies!
</a>
<div class="offcanvas offcanvas-start" tabindex="-1" id="offcanvasExample" aria-labelledby="offcanvasExampleLabel">
<div class="offcanvas-header" style="color: #fff;
background-color: #dc3545">
<h5 class="offcanvas-title" id="offcanvasExampleLabel">Varieties</h5>
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body" style="color: aliceblue; background-color: black;">
<div>
Stream Latest Movies Now!
</div>
<div class="dropdown mt-3">
<button class="btn btn-outline-danger dropdown-toggle" type="button" id="dropdownMenuButton" data-bs-toggle="dropdown">
Varieties
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton" style="background-color: #d4a09c; color: white; ">
<li><a class="dropdown-item" href="popular.html">Popular</a> </li>
<li><a class="dropdown-item" href="crime.html">Crime</a></li>
<li><a class="dropdown-item" href="suspense.html" style="font-size: 14px">Suspense &
Thriller</a></li>
<li><a class="dropdown-item" href="action.html">Action</a></li>
<li><a class="dropdown-item" href="fantasy.html" style="font-size: 14px">Sci-Fi & Fantasy</a>
</li>
<li><a class="dropdown-item" href="documentary.html">Documentary</a></li>
<li><a class="dropdown-item" href="horror.html">Horror</a></li>
<li><a class="dropdown-item" href="drama.html">Drama</a></li>
<li><a class="dropdown-item" href="war.html">War & Politics</a></li>
<li><a class="dropdown-item" href="comedy.html">Comedy</a></li>
<li><a class="dropdown-item" href="romance.html">Romance</a></li>
</ul>
</div>
</div>
</div>
<!-- off canva ends -->
<!-- off canva ends -->
<div class="maincontainer">
<div class="container">
<div id="movies" class="row"></div>
</div>
<hr>
<h2>Sci-Fi & Fantasy</h2>
<hr>
<div class="container" id="Movies">
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/twilight.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>Breaking Dawn</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2011</button>
<button class="btn_i b2_i" title="Movies" style="color:white">2</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">4.9</button>
</span>
<br />
<br />
</p>
<p class="para_i">
After consummating her marriage with Edward, Bella realises that she
has become pregnant with a child that is half-human, half-vampire.
Further, the unborn child has many enemies in the outside world.</p>
<form action="https://youtu.be/PQNLfo-SOR4">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>Twilight: Breaking Dawn</b>
<br>
IMDb - 4.9
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/inter.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>https://youtu.be/2LqzF5WauAw</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2014</button>
<button class="btn_i b2_i" title="Minutes" style="color:white">2h49min</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">8.6</button>
</span>
<br />
<br />
</p>
<p class="para_i">When Earth becomes uninhabitable in the future, a farmer
and ex-NASA pilot, Joseph Cooper, is tasked to pilot a spacecraft, along with a team of researchers, to find a new planet for humans.</p>
<form action="https://youtu.be/KPyNH7mZkGc">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>Interstellar</b>
<br>
IMDb - 8.6
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/gravity.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>Gravity</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2013</button>
<button class="btn_i b2_i" title="Seasons" style="color:white">1h31min</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">7.7</button>
</span>
<br />
<br />
</p>
<p class="para_i">Two astronauts work together
to survive after an accident leaves them stranded in space.</p>
<form action="https://www.imdb.com/video/vi2340006169?playlistId=tt1454468">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>Gravity</b>
<br>
IMDb - 7.7
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/stranger.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>Stranger Things</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2016</button>
<button class="btn_i b2_i" title="Seasons" style="color:white">4</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">8.7</button>
</span>
<br />
<br />
</p>
<p class="para_i">When a young boy disappears, his mother, a police chief and his friends
must confront terrifying supernatural forces in order to get him back.</p>
<form action="https://www.imdb.com/video/vi2480390169?playlistId=tt4574334">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>Stranger Things</b>
<br>
IMDb - 8.7
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/kong.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>Godzilla vs Kong</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2021</button>
<button class="btn_i b2_i" title="Time" style="color:white">1hr53min</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">6.5</button>
</span>
<br />
<br />
</p>
<p class="para_i">The epic next chapter in the cinematic Monsterverse pits two of the greatest icons in motion picture history against one another - the
fearsome Godzilla and the mighty Kong - with humanity caught in the balance.</p>
<form action="https://www.imdb.com/video/vi576962841?playlistId=tt5034838">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>Godzilla vs Kong</b>
<br>
IMDb - 6.5
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/harry.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>Harry Potter Series</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2001</button>
<button class="btn_i b2_i" title="Seasons" style="color:white">7</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">8.4</button>
</span>
<br />
<br />
</p>
<p class="para_i">An orphaned boy enrolls in a school of wizardry, where he learns the truth about
himself, his family and the terrible evil that haunts the magical world.</p>
<form action="https://www.imdb.com/title/tt0241527/?ref_=fn_al_tt_1">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>Harry Potter Series</b>
<br>
IMDb - 8.4
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/wanda.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>Wanda Vision</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2021</button>
<button class="btn_i b2_i" title="Seasons" style="color:white">1</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">8.1</button>
</span>
<br />
<br />
</p>
<p class="para_i">Blends the style of classic sitcoms with the MCU, in which Wanda Maximoff and Vision - two super-powered beings living their
ideal suburban lives - begin to suspect that everything is not as it seems.</p>
<form action="https://www.imdb.com/video/vi3485450265?playlistId=tt9140560">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>Wanda Vision</b>
<br>
IMDb - 8.1
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/tenet.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>Tenet</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2020</button>
<button class="btn_i b2_i" title="Time" style="color:white">2h30min</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">5.5</button>
</span>
<br />
<br />
</p>
<p class="para_i">Armed with only one word, Tenet, and fighting for the survival of the entire world, a Protagonist journeys through a twilight world of international
espionage on a mission that will unfold in something beyond real time.</p>
<form action="https://www.imdb.com/video/vi2051194393?playlistId=tt6723592">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>Tenet</b>
<br>
IMDb - 5.5
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/witcher.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>The Witcher</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2019</button>
<button class="btn_i b2_i" title="Seasons" style="color:white">1</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">8.5</button>
</span>
<br />
<br />
</p>
<p class="para_i">Geralt of Rivia, a solitary monster hunter, struggles to find
his place in a world where people often prove more wicked than beasts.</p>
<form action="https://www.imdb.com/video/vi840285977?playlistId=tt5180504">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>The Witcher</b>
<br>
IMDb - 8.5
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/narnia.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>The Chronicles of Narnia</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2005</button>
<button class="btn_i b2_i" title="Seasons" style="color:white">3</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">7.1</button>
</span>
<br />
<br />
</p>
<p class="para_i">Four children get trapped in an unearthed land called Narnia,
in order to go back home, they must face dark forces and beasts.</p>
<form action="https://www.imdb.com/video/vi3727140377?playlistId=tt0363771">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>The Chronicles of Narnia</b>
<br>
IMDb - 7.1
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/spider.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>Spiderman</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2002</button>
<button class="btn_i b2_i" title="Time" style="color:white">2h1min</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">7.3</button>
</span>
<br />
<br />
</p>
<p class="para_i">Sex, drugs and a gruesome murder. An edgy one night stand turns into a nightmare for Aditya, when he wakes up with blood on his hands. The evidence is stacked against him,
but he doesn't remember the grisly crime. Is he guilty or not ?</p>
<form action="https://www.imdb.com/video/vi422553113?playlistId=tt0145487">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>Spiderman</b>
<br>
IMDb - 7.3
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/flash.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>The Flash</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2014</button>
<button class="btn_i b2_i" title="Seasons" style="color:white">7</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">7.7</button>
</span>
<br />
<br />
</p>
<p class="para_i">After being struck by lightning, Barry Allen wakes up from his coma to discover he's been given the
power of super speed, becoming the next Flash, fighting crime in Central City.</p>
<form action="https://www.imdb.com/video/vi3478176025?playlistId=tt3107288">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>The Flash</b>
<br>
IMDb - 7.7
</div>
</div>
</div>
</div>
<div class="poster">
<div class="flip-card_i">
<div class="flip-card-inner_i">
<div class="flip-card-front_i">
<img src="./Images/lord.jpg" alt="Avatar" style="width:250px;height:360px;">
</div>
<div class="flip-card-back_i">
<h1>Lord of Rings</h1>
<button class="btn_i b3_i" title="Year" style="color:white">2001</button>
<button class="btn_i b2_i" title="Parts" style="color:white">3</button>
<button class="btn_i b1_i" title="IMDb" style="color:white">8.8</button>
</span>
<br />
<br />
</p>
<p class="para_i">A meek Hobbit from the Shire and eight companions set out on a journey to destroy
the powerful One Ring and save Middle-earth from the Dark Lord Sauron.</p>
<form action="https://www.imdb.com/video/vi2073101337?playlistId=tt0120737">
<input class="trailer_i" type="submit" value="▶Trailer" />
</form>
</div>
<div class="flim">
<b>The Lord of the Rings</b>
<br>
IMDb - 8.8
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-------------------------------Footer-------------------------------->
<div id="waterdrop"></div>
<footer class="footer">
<div class="footer-content">
<div class="footer-left">
<a href="index.html"><img class="footer-logo" src="Images/TheaterLogoFinal.png" alt="" width="30" height="24"></a>
<p class="footer-bottom-tagline">Watch! Chill! Repeat!</p>
</div>
<div class="footer-middle">
<h2 class="footer-heading">Follow Us</h2>
<ul class="footer-middle-list icons">
<a class="footer-links" href="https://www.facebook.com/" target="_blank"><i class="fab fa-facebook-f facebook" style="color:red"></i></a>
<a class="footer-links" href="https://twitter.com/login?lang=en" target="_blank"><i class="fab fa-twitter twitter" style="color:red"></i></a>
<a class="footer-links" href="https://www.linkedin.com/login" target="_blank"><i class="fab fa-linkedin linkedin" style="color:red"></i></a>
<a class="footer-links" href="https://www.instagram.com/" target="_blank"><i class="fab fa-instagram instagram" style="color:red"></i></a>
<a class="footer-links" href="https://github.com/QAZIMAAZARSHAD/Movie-Streaming-Website" target="_blank"><i class="fab fa-github github" style="color:red"></i></a>
</ul>
</div>
<div class="footer-middle">
<h2 class="footer-heading">Services</h2>
<ul class="footer-middle-list">
<li class="footer-middle-list-item"><a href="index.html">Enjoy Latest Movies</a> </li>
<li class="footer-middle-list-item"><a href="web-series.html">Watch Web-Series</a> </li>
<li class="footer-middle-list-item"><a href="kids.html">Everything for Kids</a> </li>
<li class="footer-middle-list-item"><a href="index.html">Get Premium Subscription</a> </li>
</ul>
</div>
<div class="footer-middle">
<h2 class="footer-heading">Try Our App</h2>
<ul class="footer-middle-list icons">
<a class="footer-links" href="#"><i class="fab fa-google-play" style="color:red"></i></a>
<a class="footer-links" href="#"><i class="fab fa-app-store-ios" style="color:red"></i></a>
</ul>
</div>
<div class="footer-right">
<p class="footer-links">
<h2 class="footer-heading">Contact Us</h2>
<p class="footer-bottom-tagline">Feel free to contact us.</p>
<a class="footer-contact-button" href="contactus.html">Contact</a>
</p>
</div>
</div>
<hr id="footer-hr">
<div class="footer-copyright">
<p>Copyright © and ® Since
<script>
document.write(new Date().getFullYear())
</script> Under ApnaTheatre.com : (Project Is Done By Qazi Maaz Arshad)</p>
</div>
</footer>
<!----------------------scroll back to top button----->
<button id="scrollToTopButton" title="Go to top" class="ml-5" >
<i class="fa fa-angle-double-up" aria-hidden="true"></i>
</button>
<script>
$(document).ready(function(){
var scrollTopButton = document.getElementById("scrollToTopButton");
window.onscroll = function () { scrollFunction() };
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
scrollTopButton.style.display = "block";
} else {
scrollTopButton.style.display = "none";
}
}
$("#scrollToTopButton").click(function(){
$('html ,body').animate({scrollTop : 0},800)
});
});
</script>
<!-- offcanva JS and footer js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="https://daniellaharel.com/raindrops/js/raindrops.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="js/main-min.js"></script>
<script>
jQuery('#waterdrop').raindrops({
color: '#292c2f',
canvasHeight: 150,
density: 0.1,
frequency: 20
});
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<script src="./static/script.js"></script>
</body>
</html>