-
Notifications
You must be signed in to change notification settings - Fork 1
/
moviesingle_light.html
executable file
·1114 lines (1094 loc) · 52.1 KB
/
moviesingle_light.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>
<!--[if IE 7]>
<html class="ie ie7 no-js" lang="en-US">
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8 no-js" lang="en-US">
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html lang="en" class="no-js">
<!-- moviesingle_light16:30-->
<head>
<!-- Basic need -->
<title>Open Pediatrics</title>
<meta charset="UTF-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<link rel="profile" href="#">
<!--Google Font-->
<link rel="stylesheet" href='http://fonts.googleapis.com/css?family=Dosis:400,700,500|Nunito:300,400,600' />
<!-- Mobile specific meta -->
<meta name=viewport content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone-no">
<!-- CSS files -->
<link rel="stylesheet" href="css/plugins.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--preloading-->
<div id="preloader">
<img class="logo" src="images/logo1.png" alt="" width="119" height="58">
<div id="status">
<span></span>
<span></span>
</div>
</div>
<!--end of preloading-->
<!--login form popup-->
<div class="login-wrapper" id="login-content">
<div class="login-content">
<a href="#" class="close">x</a>
<h3>Login</h3>
<form method="post" action="#">
<div class="row">
<label for="username">
Username:
<input type="text" name="username" id="username" placeholder="Hugh Jackman" pattern="^[a-zA-Z][a-zA-Z0-9-_\.]{8,20}$" required="required" />
</label>
</div>
<div class="row">
<label for="password">
Password:
<input type="password" name="password" id="password" placeholder="******" pattern="(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$" required="required" />
</label>
</div>
<div class="row">
<div class="remember">
<div>
<input type="checkbox" name="remember" value="Remember me"><span>Remember me</span>
</div>
<a href="#">Forget password ?</a>
</div>
</div>
<div class="row">
<button type="submit">Login</button>
</div>
</form>
<div class="row">
<p>Or via social</p>
<div class="social-btn-2">
<a class="fb" href="#"><i class="ion-social-facebook"></i>Facebook</a>
<a class="tw" href="#"><i class="ion-social-twitter"></i>twitter</a>
</div>
</div>
</div>
</div>
<!--end of login form popup-->
<!--signup form popup-->
<div class="login-wrapper" id="signup-content">
<div class="login-content">
<a href="#" class="close">x</a>
<h3>sign up</h3>
<form method="post" action="#">
<div class="row">
<label for="username-2">
Username:
<input type="text" name="username" id="username-2" placeholder="Hugh Jackman" pattern="^[a-zA-Z][a-zA-Z0-9-_\.]{8,20}$" required="required" />
</label>
</div>
<div class="row">
<label for="email-2">
your email:
<input type="password" name="email" id="email-2" placeholder="" pattern="(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$" required="required" />
</label>
</div>
<div class="row">
<label for="password-2">
Password:
<input type="password" name="password" id="password-2" placeholder="" pattern="(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$" required="required" />
</label>
</div>
<div class="row">
<label for="repassword-2">
re-type Password:
<input type="password" name="password" id="repassword-2" placeholder="" pattern="(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$" required="required" />
</label>
</div>
<div class="row">
<button type="submit">sign up</button>
</div>
</form>
</div>
</div>
<!--end of signup form popup-->
<!-- BEGIN | Header -->
<header class="ht-header">
<div class="container">
<nav class="navbar navbar-default navbar-custom">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header logo">
<div class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<div id="nav-icon1">
<span></span>
<span></span>
<span></span>
</div>
</div>
<a href="index_light.html"><img class="logo" src="images/logo1.png" alt="" width="119" height="58"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse flex-parent" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav flex-child-menu menu-left">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="dropdown first">
<a class="btn btn-default dropdown-toggle lv1" data-toggle="dropdown">
Home <i class="fa fa-angle-down" aria-hidden="true"></i>
</a>
<ul class="dropdown-menu level1">
<li><a href="index_light.html">Home 01</a></li>
<li><a href="homev2_light.html">Home 02</a></li>
<li><a href="homev3_light.html">Home 03</a></li>
</ul>
</li>
<li class="dropdown first">
<a class="btn btn-default dropdown-toggle lv1" data-toggle="dropdown" data-hover="dropdown">
movies<i class="fa fa-angle-down" aria-hidden="true"></i>
</a>
<ul class="dropdown-menu level1">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" >Movie grid<i class="ion-ios-arrow-forward"></i></a>
<ul class="dropdown-menu level2">
<li><a href="moviegrid_light.html">Movie grid</a></li>
<li><a href="moviegridfw_light.html">movie grid full width</a></li>
</ul>
</li>
<li><a href="movielist_light.html">Movie list</a></li>
<li><a href="moviesingle_light.html">Movie single</a></li>
<li class="it-last"><a href="seriessingle_light.html">Series single</a></li>
</ul>
</li>
<li class="dropdown first">
<a class="btn btn-default dropdown-toggle lv1" data-toggle="dropdown" data-hover="dropdown">
celebrities <i class="fa fa-angle-down" aria-hidden="true"></i>
</a>
<ul class="dropdown-menu level1">
<li><a href="celebritygrid01_light.html">celebrity grid 01</a></li>
<li><a href="celebritygrid02_light.html">celebrity grid 02 </a></li>
<li><a href="celebritylist_light.html">celebrity list</a></li>
<li class="it-last"><a href="celebritysingle_light.html">celebrity single</a></li>
</ul>
</li>
<li class="dropdown first">
<a class="btn btn-default dropdown-toggle lv1" data-toggle="dropdown" data-hover="dropdown">
news <i class="fa fa-angle-down" aria-hidden="true"></i>
</a>
<ul class="dropdown-menu level1">
<li><a href="bloglist_light.html">blog List</a></li>
<li><a href="bloggrid_light.html">blog Grid</a></li>
<li class="it-last"><a href="blogdetail_light.html">blog Detail</a></li>
</ul>
</li>
<li class="dropdown first">
<a class="btn btn-default dropdown-toggle lv1" data-toggle="dropdown" data-hover="dropdown">
community <i class="fa fa-angle-down" aria-hidden="true"></i>
</a>
<ul class="dropdown-menu level1">
<li><a href="userfavoritegrid_light.html">user favorite grid</a></li>
<li><a href="userfavoritelist_light.html">user favorite list</a></li>
<li><a href="userprofile_light.html">user profile</a></li>
<li class="it-last"><a href="userrate_light.html">user rate</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav flex-child-menu menu-right">
<li class="dropdown first">
<a class="btn btn-default dropdown-toggle lv1" data-toggle="dropdown" data-hover="dropdown">
pages <i class="fa fa-angle-down" aria-hidden="true"></i>
</a>
<ul class="dropdown-menu level1">
<li><a href="landing.html">Landing</a></li>
<li><a href="404.html">404 Page</a></li>
<li class="it-last"><a href="comingsoon.html">Coming soon</a></li>
</ul>
</li>
<li><a href="#">Help</a></li>
<li class="loginLink"><a href="#">LOG In</a></li>
<li class="btn signupLink"><a href="#">sign up</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</nav>
<!-- top search form -->
<div class="top-search">
<select>
<option value="united">TV show</option>
<option value="saab">Others</option>
</select>
<input type="text" placeholder="Search for a movie, TV Show or celebrity that you are looking for">
</div>
</div>
</header>
<!-- END | Header -->
<div class="buster-light">
<div class="hero mv-single-hero">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- <h1> movie listing - list</h1>
<ul class="breadcumb">
<li class="active"><a href="#">Home</a></li>
<li> <span class="ion-ios-arrow-right"></span> movie listing</li>
</ul> -->
</div>
</div>
</div>
</div>
<div class="page-single movie-single movie_single">
<div class="container">
<div class="row ipad-width2">
<div class="col-md-4 col-sm-12 col-xs-12">
<div class="movie-img sticky-sb">
<img src="images/uploads/movie-single.jpg" alt="">
<div class="movie-btn">
<div class="btn-transform transform-vertical red">
<div><a href="#" class="item item-1 redbtn"> <i class="ion-play"></i> Watch Trailer</a></div>
<div><a href="https://www.youtube.com/embed/o-0hcF97wy0" class="item item-2 redbtn fancybox-media hvr-grow"><i class="ion-play"></i></a></div>
</div>
<div class="btn-transform transform-vertical">
<div><a href="#" class="item item-1 yellowbtn"> <i class="ion-card"></i> Buy ticket</a></div>
<div><a href="#" class="item item-2 yellowbtn"><i class="ion-card"></i></a></div>
</div>
</div>
</div>
</div>
<div class="col-md-8 col-sm-12 col-xs-12">
<div class="movie-single-ct main-content">
<h1 class="bd-hd">Skyfall: Quantum of Spectre <span>2015</span></h1>
<div class="social-btn">
<a href="#" class="parent-btn"><i class="ion-heart"></i> Add to Favorite</a>
<div class="hover-bnt">
<a href="#" class="parent-btn"><i class="ion-android-share-alt"></i>share</a>
<div class="hvr-item">
<a href="#" class="hvr-grow"><i class="ion-social-facebook"></i></a>
<a href="#" class="hvr-grow"><i class="ion-social-twitter"></i></a>
<a href="#" class="hvr-grow"><i class="ion-social-googleplus"></i></a>
<a href="#" class="hvr-grow"><i class="ion-social-youtube"></i></a>
</div>
</div>
</div>
<div class="movie-rate">
<div class="rate">
<i class="ion-android-star"></i>
<p><span>8.1</span> /10<br>
<span class="rv">56 Reviews</span>
</p>
</div>
<div class="rate-star">
<p>Rate This Movie: </p>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star"></i>
<i class="ion-ios-star-outline"></i>
</div>
</div>
<div class="movie-tabs">
<div class="tabs">
<ul class="tab-links tabs-mv">
<li class="active"><a href="#overview">Overview</a></li>
<li><a href="#reviews"> Reviews</a></li>
<li><a href="#cast"> Cast & Crew </a></li>
<li><a href="#media"> Media</a></li>
<li><a href="#moviesrelated"> Related Movies</a></li>
</ul>
<div class="tab-content">
<div id="overview" class="tab active">
<div class="row">
<div class="col-md-8 col-sm-12 col-xs-12">
<p>Tony Stark creates the Ultron Program to protect the world, but when the peacekeeping program becomes hostile, The Avengers go into action to try and defeat a virtually impossible enemy together. Earth's mightiest heroes must come together once again to protect the world from global extinction.</p>
<div class="title-hd-sm">
<h4>Videos & Photos</h4>
<a href="#" class="time">All 5 Videos & 245 Photos <i class="ion-ios-arrow-right"></i></a>
</div>
<div class="mvsingle-item ov-item">
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image11.jpg" ><img src="images/uploads/image1.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image21.jpg" ><img src="images/uploads/image2.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image31.jpg" ><img src="images/uploads/image3.jpg" alt=""></a>
<div class="vd-it">
<img class="vd-img" src="images/uploads/image4.jpg" alt="">
<a class="fancybox-media hvr-grow" href="https://www.youtube.com/embed/o-0hcF97wy0"><img src="images/uploads/play-vd.png" alt=""></a>
</div>
</div>
<div class="title-hd-sm">
<h4>cast</h4>
<a href="#" class="time">Full Cast & Crew <i class="ion-ios-arrow-right"></i></a>
</div>
<!-- movie cast -->
<div class="mvcast-item">
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast1.jpg" alt="">
<a href="#">Robert Downey Jr.</a>
</div>
<p>... Robert Downey Jr.</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast2.jpg" alt="">
<a href="#">Chris Hemsworth</a>
</div>
<p>... Thor</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast3.jpg" alt="">
<a href="#">Mark Ruffalo</a>
</div>
<p>... Bruce Banner/ Hulk</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast4.jpg" alt="">
<a href="#">Chris Evans</a>
</div>
<p>... Steve Rogers/ Captain America</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast5.jpg" alt="">
<a href="#">Scarlett Johansson</a>
</div>
<p>... Natasha Romanoff/ Black Widow</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast6.jpg" alt="">
<a href="#">Jeremy Renner</a>
</div>
<p>... Clint Barton/ Hawkeye</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast7.jpg" alt="">
<a href="#">James Spader</a>
</div>
<p>... Ultron</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast9.jpg" alt="">
<a href="#">Don Cheadle</a>
</div>
<p>... James Rhodes/ War Machine</p>
</div>
</div>
<div class="title-hd-sm">
<h4>User reviews</h4>
<a href="#" class="time">See All 56 Reviews <i class="ion-ios-arrow-right"></i></a>
</div>
<!-- movie user review -->
<div class="mv-user-review-item">
<h3>Best Marvel movie in my opinion</h3>
<div class="no-star">
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star last"></i>
</div>
<p class="time">
17 December 2016 by <a href="#"> hawaiipierson</a>
</p>
<p>This is by far one of my favorite movies from the MCU. The introduction of new Characters both good and bad also makes the movie more exciting. giving the characters more of a back story can also help audiences relate more to different characters better, and it connects a bond between the audience and actors or characters. Having seen the movie three times does not bother me here as it is as thrilling and exciting every time I am watching it. In other words, the movie is by far better than previous movies (and I do love everything Marvel), the plotting is splendid (they really do out do themselves in each film, there are no problems watching it more than once.</p>
</div>
</div>
<div class="col-md-4 col-xs-12 col-sm-12">
<div class="sb-it">
<h6>Director: </h6>
<p><a href="#">Joss Whedon</a></p>
</div>
<div class="sb-it">
<h6>Writer: </h6>
<p><a href="#">Joss Whedon,</a> <a href="#">Stan Lee</a></p>
</div>
<div class="sb-it">
<h6>Stars: </h6>
<p><a href="#">Robert Downey Jr,</a> <a href="#">Chris Evans,</a> <a href="#">Mark Ruffalo,</a><a href="#"> Scarlett Johansson</a></p>
</div>
<div class="sb-it">
<h6>Genres:</h6>
<p><a href="#">Action, </a> <a href="#"> Sci-Fi,</a> <a href="#">Adventure</a></p>
</div>
<div class="sb-it">
<h6>Release Date:</h6>
<p>May 1, 2015 (U.S.A)</p>
</div>
<div class="sb-it">
<h6>Run Time:</h6>
<p>141 min</p>
</div>
<div class="sb-it">
<h6>MMPA Rating:</h6>
<p>PG-13</p>
</div>
<div class="sb-it">
<h6>Plot Keywords:</h6>
<p class="tags">
<span class="time"><a href="#">superhero</a></span>
<span class="time"><a href="#">marvel universe</a></span>
<span class="time"><a href="#">comic</a></span>
<span class="time"><a href="#">blockbuster</a></span>
<span class="time"><a href="#">final battle</a></span>
</p>
</div>
<div class="ads">
<img src="images/uploads/ads1.png" alt="">
</div>
</div>
</div>
</div>
<div id="reviews" class="tab review">
<div class="row">
<div class="rv-hd">
<div class="div">
<h3>Related Movies To</h3>
<h2>Skyfall: Quantum of Spectre</h2>
</div>
<a href="#" class="redbtn">Write Review</a>
</div>
<div class="topbar-filter">
<p>Found <span>56 reviews</span> in total</p>
<label>Filter by:</label>
<select>
<option value="popularity">Popularity Descending</option>
<option value="popularity">Popularity Ascending</option>
<option value="rating">Rating Descending</option>
<option value="rating">Rating Ascending</option>
<option value="date">Release date Descending</option>
<option value="date">Release date Ascending</option>
</select>
</div>
<div class="mv-user-review-item">
<div class="user-infor">
<img src="images/uploads/userava1.jpg" alt="">
<div>
<h3>Best Marvel movie in my opinion</h3>
<div class="no-star">
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star last"></i>
</div>
<p class="time">
17 December 2016 by <a href="#"> hawaiipierson</a>
</p>
</div>
</div>
<p>This is by far one of my favorite movies from the MCU. The introduction of new Characters both good and bad also makes the movie more exciting. giving the characters more of a back story can also help audiences relate more to different characters better, and it connects a bond between the audience and actors or characters. Having seen the movie three times does not bother me here as it is as thrilling and exciting every time I am watching it. In other words, the movie is by far better than previous movies (and I do love everything Marvel), the plotting is splendid (they really do out do themselves in each film, there are no problems watching it more than once.</p>
</div>
<div class="mv-user-review-item">
<div class="user-infor">
<img src="images/uploads/userava2.jpg" alt="">
<div>
<h3>Just about as good as the first one!</h3>
<div class="no-star">
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
</div>
<p class="time">
17 December 2016 by <a href="#"> hawaiipierson</a>
</p>
</div>
</div>
<p>Avengers Age of Ultron is an excellent sequel and a worthy MCU title! There are a lot of good and one thing that feels off in my opinion. </p>
<p>THE GOOD:</p>
<p>First off the action in this movie is amazing, to buildings crumbling, to evil blue eyed robots tearing stuff up, this movie has the action perfectly handled. And with that action comes visuals. The visuals are really good, even though you can see clearly where they are through the movie, but that doesn't detract from the experience. While all the CGI glory is taking place, there are lovable characters that are in the mix. First off the original characters, Iron Man, Captain America, Thor, Hulk, Black Widow, and Hawkeye, are just as brilliant as they are always. And Joss Whedon fixed my main problem in the first Avengers by putting in more Hawkeye and him more fleshed out. Then there is the new Avengers, Quicksilver, Scarletwich, and Vision, they are pretty cool in my opinion. Vision in particular is pretty amazing in all his scenes.</p>
<p>THE BAD:</p>
<p>The beginning of the film it's fine until towards the second act and there is when it starts to feel a little rushed. Also I do feel like there are scenes missing but there was talk of an extended version on Blu-Ray so that's cool.</p>
</div>
<div class="mv-user-review-item">
<div class="user-infor">
<img src="images/uploads/userava3.jpg" alt="">
<div>
<h3>One of the most boring exepirences from watching a movie</h3>
<div class="no-star">
<i class="ion-android-star"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
</div>
<p class="time">
26 March 2017 by<a href="#"> christopherfreeman</a>
</p>
</div>
</div>
<p>I can't right much... it's just so forgettable...Okay, from what I remember, I remember just sitting down on my seat and waiting for the movie to begin. 5 minutes into the movie, boring scene of Tony Stark just talking to his "dead" friends saying it's his fault. 10 minutes in: Boring scene of Ultron and Jarvis having robot space battles(I dunno:/). 15 minutes in: I leave the theatre.2nd attempt at watching it: I fall asleep. What woke me up is the next movie on Netflix when the movie was over.</p>
<p>Bottemline: It's boring...</p>
<p>10/10 because I'm a Marvel Fanboy</p>
</div>
<div class="mv-user-review-item ">
<div class="user-infor">
<img src="images/uploads/userava4.jpg" alt="">
<div>
<h3>That spirit of fun</h3>
<div class="no-star">
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
</div>
<p class="time">
26 March 2017 by <a href="#"> juliawest</a>
</p>
</div>
</div>
<p>If there were not an audience for Marvel comic heroes than clearly these films would not be made, to answer one other reviewer although I sympathize with him somewhat. The world is indeed an infinitely more complex place than the world of Marvel comics with clearly identifiable heroes and villains. But I get the feeling that from Robert Downey, Jr. on down the organizer and prime mover as Iron Man behind the Avengers these players do love doing these roles because it's a lot of fun. If they didn't show that spirit of fun to the audience than these films would never be made.</p>
<p>So in that spirit of fun Avengers: Age Of Ultron comes before us and everyone looks like they're having a good time saving the world. A computer program got loose and took form in this dimension named Ultron and James Spader who is completely unrecognizable is running amuck in the earth. No doubt Star Trek fans took notice that this guy's mission is to cleanse the earth much like that old earth probe NOMAD which got its programming mixed up in that classic Star Trek prime story. Wouldst Captain James T. Kirk of the Enterprise had a crew like Downey has at his command.</p>
<p>My favorite is always Chris Evans because of the whole cast he best gets into the spirit of being a superhero. Of all of them, he's already played two superheroes, Captain America and Johnny Storm the Human Torch. I'll be before he's done Evans will play a couple of more as long as the money's good and he enjoys it.</p>
<p>Pretend you're a kid again and enjoy, don't take it so seriously.</p>
</div>
<div class="mv-user-review-item last">
<div class="user-infor">
<img src="images/uploads/userava5.jpg" alt="">
<div>
<h3>Impressive Special Effects and Cast</h3>
<div class="no-star">
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star"></i>
<i class="ion-android-star last"></i>
<i class="ion-android-star last"></i>
</div>
<p class="time">
26 March 2017 by <a href="#"> johnnylee</a>
</p>
</div>
</div>
<p>The Avengers raid a Hydra base in Sokovia commanded by Strucker and they retrieve Loki's scepter. They also discover that Strucker had been conducting experiments with the orphan twins Pietro Maximoff (Aaron Taylor-Johnson), who has super speed, and Wanda Maximoff (Elizabeth Olsen), who can control minds and project energy. Tony Stark (Robert Downey Jr.) discovers an Artificial Intelligence in the scepter and convinces Bruce Banner (Mark Ruffalo) to secretly help him to transfer the A.I. to his Ultron defense system. However, the Ultron understands that is necessary to annihilate mankind to save the planet, attacks the Avengers and flees to Sokovia with the scepter. He builds an armature for self-protection and robots for his army and teams up with the twins. The Avengers go to Clinton Barton's house to recover, but out of the blue, Nick Fury (Samuel L. Jackson) arrives and convinces them to fight against Ultron. Will they succeed? </p>
<p>"Avengers: Age of Ultron" is an entertaining adventure with impressive special effects and cast. The storyline might be better, since most of the characters do not show any chemistry. However, it is worthwhile watching this film since the amazing special effects are not possible to be described in words. Why Pietro has to die is also not possible to be explained. My vote is eight.</p>
</div>
<div class="topbar-filter">
<label>Reviews per page:</label>
<select>
<option value="range">5 Reviews</option>
<option value="saab">10 Reviews</option>
</select>
<div class="pagination2">
<span>Page 1 of 6:</span>
<a class="active" href="#">1</a>
<a href="#">2</a>
<a href="#">3</a>
<a href="#">4</a>
<a href="#">5</a>
<a href="#">6</a>
<a href="#"><i class="ion-arrow-right-b"></i></a>
</div>
</div>
</div>
</div>
<div id="cast" class="tab">
<div class="row">
<h3>Cast & Crew of</h3>
<h2>Avengers: Age of Ultron</h2>
<!-- //== -->
<div class="title-hd-sm">
<h4>Directors & Credit Writers</h4>
</div>
<div class="mvcast-item">
<div class="cast-it">
<div class="cast-left">
<h4>JW</h4>
<a href="#">Joss Whedon</a>
</div>
<p>... Director</p>
</div>
</div>
<!-- //== -->
<div class="title-hd-sm">
<h4>Directors & Credit Writers</h4>
</div>
<div class="mvcast-item">
<div class="cast-it">
<div class="cast-left">
<h4>SL</h4>
<a href="#">Stan Lee</a>
</div>
<p>... (based on Marvel comics)</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>JK</h4>
<a href="#">Jack Kirby</a>
</div>
<p>... (based on Marvel comics)</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>JS</h4>
<a href="#">Joe Simon</a>
</div>
<p>... (character created by: Captain America)</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>JS</h4>
<a href="#">Joe Simon</a>
</div>
<p>... (character created by: Thanos)</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>RT</h4>
<a href="#">Roy Thomas</a>
</div>
<p>... (character created by: Ultron, Vision)</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>JB</h4>
<a href="#">John Buscema</a>
</div>
<p>... (character created by: Ultron, Vision)</p>
</div>
</div>
<!-- //== -->
<div class="title-hd-sm">
<h4>Cast</h4>
</div>
<div class="mvcast-item">
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast1.jpg" alt="">
<a href="#">Robert Downey Jr.</a>
</div>
<p>... Robert Downey Jr.</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast2.jpg" alt="">
<a href="#">Chris Hemsworth</a>
</div>
<p>... Thor</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast3.jpg" alt="">
<a href="#">Mark Ruffalo</a>
</div>
<p>... Bruce Banner/ Hulk</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast4.jpg" alt="">
<a href="#">Chris Evans</a>
</div>
<p>... Steve Rogers/ Captain America</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast5.jpg" alt="">
<a href="#">Scarlett Johansson</a>
</div>
<p>... Natasha Romanoff/ Black Widow</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast6.jpg" alt="">
<a href="#">Jeremy Renner</a>
</div>
<p>... Clint Barton/ Hawkeye</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast7.jpg" alt="">
<a href="#">James Spader</a>
</div>
<p>... Ultron</p>
</div>
<div class="cast-it">
<div class="cast-left">
<img src="images/uploads/cast9.jpg" alt="">
<a href="#">Don Cheadle</a>
</div>
<p>... James Rhodes/ War Machine</p>
</div>
</div>
<!-- //== -->
<div class="title-hd-sm">
<h4>Produced by</h4>
</div>
<div class="mvcast-item">
<div class="cast-it">
<div class="cast-left">
<h4>VA</h4>
<a href="#">Victoria Alonso</a>
</div>
<p>... executive producer</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>MB</h4>
<a href="#">Mitchel Bell</a>
</div>
<p>... co-producer (as Mitch Bell)</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>JC</h4>
<a href="#">Jamie Christopher</a>
</div>
<p>... associate producer</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>LD</h4>
<a href="#">Louis D’Esposito</a>
</div>
<p>... executive producer</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>JF</h4>
<a href="#">Jon Favreau</a>
</div>
<p>... executive producer</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>KF</h4>
<a href="#">Kevin Feige</a>
</div>
<p>... producer</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>AF</h4>
<a href="#">Alan Fine</a>
</div>
<p>... executive producer</p>
</div>
<div class="cast-it">
<div class="cast-left">
<h4>JF</h4>
<a href="#">Jeffrey Ford</a>
</div>
<p>... associate producer</p>
</div>
</div>
</div>
</div>
<div id="media" class="tab">
<div class="row">
<div class="rv-hd">
<div>
<h3>Videos & Photos of</h3>
<h2>Skyfall: Quantum of Spectre</h2>
</div>
</div>
<div class="title-hd-sm">
<h4>Videos <span>(8)</span></h4>
</div>
<div class="mvsingle-item media-item">
<div class="vd-item">
<div class="vd-it">
<img class="vd-img" src="images/uploads/vd-item1.jpg" alt="">
<a class="fancybox-media hvr-grow" href="https://www.youtube.com/embed/o-0hcF97wy0"><img src="images/uploads/play-vd.png" alt=""></a>
</div>
<div class="vd-infor">
<h6> <a href="#">Trailer: Watch New Scenes</a></h6>
<p class="time"> 1: 31</p>
</div>
</div>
<div class="vd-item">
<div class="vd-it">
<img class="vd-img" src="images/uploads/vd-item2.jpg" alt="">
<a class="fancybox-media hvr-grow" href="https://www.youtube.com/embed/o-0hcF97wy0"><img src="images/uploads/play-vd.png" alt=""></a>
</div>
<div class="vd-infor">
<h6> <a href="#">Featurette: “Avengers Re-Assembled</a></h6>
<p class="time"> 1: 03</p>
</div>
</div>
<div class="vd-item">
<div class="vd-it">
<img class="vd-img" src="images/uploads/vd-item3.jpg" alt="">
<a class="fancybox-media hvr-grow" href="https://www.youtube.com/embed/o-0hcF97wy0"><img src="images/uploads/play-vd.png" alt=""></a>
</div>
<div class="vd-infor">
<h6> <a href="#">Interview: Robert Downey Jr</a></h6>
<p class="time"> 3:27</p>
</div>
</div>
<div class="vd-item">
<div class="vd-it">
<img class="vd-img" src="images/uploads/vd-item4.jpg" alt="">
<a class="fancybox-media hvr-grow" href="https://www.youtube.com/embed/o-0hcF97wy0"><img src="images/uploads/play-vd.png" alt=""></a>
</div>
<div class="vd-infor">
<h6> <a href="#">Interview: Scarlett Johansson</a></h6>
<p class="time"> 3:27</p>
</div>
</div>
<div class="vd-item">
<div class="vd-it">
<img class="vd-img" src="images/uploads/vd-item1.jpg" alt="">
<a class="fancybox-media hvr-grow" href="https://www.youtube.com/embed/o-0hcF97wy0"><img src="images/uploads/play-vd.png" alt=""></a>
</div>
<div class="vd-infor">
<h6> <a href="#">Featurette: Meet Quicksilver & The Scarlet Witch</a></h6>
<p class="time"> 1: 31</p>
</div>
</div>
<div class="vd-item">
<div class="vd-it">
<img class="vd-img" src="images/uploads/vd-item2.jpg" alt="">
<a class="fancybox-media hvr-grow" href="https://www.youtube.com/embed/o-0hcF97wy0"><img src="images/uploads/play-vd.png" alt=""></a>
</div>
<div class="vd-infor">
<h6> <a href="#">Interview: Director Joss Whedon</a></h6>
<p class="time"> 1: 03</p>
</div>
</div>
<div class="vd-item">
<div class="vd-it">
<img class="vd-img" src="images/uploads/vd-item3.jpg" alt="">
<a class="fancybox-media hvr-grow" href="https://www.youtube.com/embed/o-0hcF97wy0"><img src="images/uploads/play-vd.png" alt=""></a>
</div>
<div class="vd-infor">
<h6> <a href="#">Interview: Mark Ruffalo</a></h6>
<p class="time"> 3:27</p>
</div>
</div>
<div class="vd-item">
<div class="vd-it">
<img class="vd-img" src="images/uploads/vd-item4.jpg" alt="">
<a class="fancybox-media hvr-grow" href="https://www.youtube.com/embed/o-0hcF97wy0"><img src="images/uploads/play-vd.png" alt=""></a>
</div>
<div class="vd-infor">
<h6> <a href="#">Official Trailer #2</a></h6>
<p class="time"> 3:27</p>
</div>
</div>
</div>
<div class="title-hd-sm">
<h4>Photos <span> (21)</span></h4>
</div>
<div class="mvsingle-item">
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image11.jpg" ><img src="images/uploads/image1.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image21.jpg" ><img src="images/uploads/image2.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image31.jpg" ><img src="images/uploads/image3.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image41.jpg" ><img src="images/uploads/image4.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image51.jpg" ><img src="images/uploads/image5.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image61.jpg" ><img src="images/uploads/image6.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image71.jpg" ><img src="images/uploads/image7.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image81.jpg" ><img src="images/uploads/image8.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image91.jpg" ><img src="images/uploads/image9.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image101.jpg" ><img src="images/uploads/image10.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image111.jpg" ><img src="images/uploads/image1-1.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image121.jpg" ><img src="images/uploads/image12.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image131.jpg" ><img src="images/uploads/image13.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image141.jpg" ><img src="images/uploads/image14.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image151.jpg" ><img src="images/uploads/image15.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image161.jpg" ><img src="images/uploads/image16.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image171.jpg" ><img src="images/uploads/image17.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image181.jpg" ><img src="images/uploads/image18.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image191.jpg" ><img src="images/uploads/image19.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image201.jpg" ><img src="images/uploads/image20.jpg" alt=""></a>
<a class="img-lightbox" data-fancybox-group="gallery" href="images/uploads/image211.jpg" ><img src="images/uploads/image2-1.jpg" alt=""></a>
</div>
</div>
</div>
<div id="moviesrelated" class="tab">
<div class="row">
<h3>Related Movies To</h3>
<h2>Skyfall: Quantum of Spectre</h2>
<div class="topbar-filter">
<p>Found <span>12 movies</span> in total</p>
<label>Sort by:</label>
<select>
<option value="popularity">Popularity Descending</option>
<option value="popularity">Popularity Ascending</option>
<option value="rating">Rating Descending</option>
<option value="rating">Rating Ascending</option>
<option value="date">Release date Descending</option>
<option value="date">Release date Ascending</option>
</select>
</div>
<div class="movie-item-style-2">
<img src="images/uploads/mv1.jpg" alt="">
<div class="mv-item-infor">
<h6><a href="#">oblivion <span>(2012)</span></a></h6>
<p class="rate"><i class="ion-android-star"></i><span>8.1</span> /10</p>
<p class="describe">Earth's mightiest heroes must come together and learn to fight as a team if they are to stop the mischievous Loki and his alien army from enslaving humanity...</p>
<p class="run-time"> Run Time: 2h21’ . <span>MMPA: PG-13 </span> . <span>Release: 1 May 2015</span></p>
<p>Director: <a href="#">Joss Whedon</a></p>
<p>Stars: <a href="#">Robert Downey Jr.,</a> <a href="#">Chris Evans,</a> <a href="#"> Chris Hemsworth</a></p>
</div>
</div>
<div class="movie-item-style-2">
<img src="images/uploads/mv2.jpg" alt="">
<div class="mv-item-infor">
<h6><a href="#">into the wild <span>(2014)</span></a></h6>
<p class="rate"><i class="ion-android-star"></i><span>7.8</span> /10</p>
<p class="describe">As Steve Rogers struggles to embrace his role in the modern world, he teams up with a fellow Avenger and S.H.I.E.L.D agent, Black Widow, to battle a new threat...</p>
<p class="run-time"> Run Time: 2h21’ . <span>MMPA: PG-13 </span> . <span>Release: 1 May 2015</span></p>
<p>Director: <a href="#">Anthony Russo,</a><a href="#">Joe Russo</a></p>
<p>Stars: <a href="#">Chris Evans,</a> <a href="#">Samuel L. Jackson,</a> <a href="#"> Scarlett Johansson</a></p>
</div>
</div>
<div class="movie-item-style-2">
<img src="images/uploads/mv3.jpg" alt="">
<div class="mv-item-infor">
<h6><a href="#">blade runner <span>(2015)</span></a></h6>
<p class="rate"><i class="ion-android-star"></i><span>7.3</span> /10</p>
<p class="describe">Armed with a super-suit with the astonishing ability to shrink in scale but increase in strength, cat burglar Scott Lang must embrace his inner hero and help...</p>
<p class="run-time"> Run Time: 2h21’ . <span>MMPA: PG-13 </span> . <span>Release: 1 May 2015</span></p>
<p>Director: <a href="#">Peyton Reed</a></p>
<p>Stars: <a href="#">Paul Rudd,</a> <a href="#"> Michael Douglas</a></p>
</div>