moviereview / spidy.html
JAYASWAROOP's picture
Upload 12 files
b361446
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie Review</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="styles1.css">
</head>
<body>
<header class="text-center">
<h1>Movie Review</h1>
</header>
<main>
<div class="container">
<div class="row">
<div class="col-lg-1 mt-4"></div>
<div class="col-lg-4 mt-4">
<div class="movie">
<img src="https://www.adgully.com/img/800/201807/image-3.png.jpg" alt="Movie Poster">
<div class="movie-details">
<h2>Spiderman : HomeComing</h2>
<p>Description</p>
<p>A young Peter Parker/Spider-Man begins to navigate his newfound identity
as web-slinging superhero Spider-Man. Thrilled by his experience with the Avengers, Peter returns home, where he lives with his Aunt May, under the watchful eye of his new mentor Tony Stark. Peter tries to fall back into his normal daily routine--distracted by thoughts of proving himself to be more than just your friendly neighborhood Spider-Man--but when
the Vulture emerges as a new villain, everything that Peter holds most important will be threatened.
</p>
<div class="rating">
<span class="star"><i class="fas fa-star"></i></span>
<span class="star"><i class="fas fa-star"></i></span>
<span class="star"><i class="fas fa-star"></i></span>
<span class="star"><i class="fas fa-star"></i></span>
<span class="star"><i class="far fa-star"></i></span>
</div>
</div>
</div>
</div>
<div class="col-lg-1 mt-4"></div>
<div class="col-lg-6 mt-4">
<div class="review movie">
<h3>Trailer</h3>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/rk-dF1lIbIg?si=qCMq6Dn-wVCOzQH3" allowfullscreen></iframe>
</div>
<h3>Review</h3>
<p>Spider-Man: Homecoming is a spectacular film. It is the best Spider- Man movie, yet.
Director Jon Watts makes sure that the audience sees a different side of Spider-Man, that wasn't
seen in any of the previous big screen incarnations of the character. I love the fact that the
focus was on Peter Parker's high school life, this time around. The action set pieces are awe-inspiring. The Washington Monument scene, the Staten Island ferry scene & the climax are the highlights of the film. The visual effects are mind blowing. The 3D is eye-popping. I love the fact that we get to see Spidey's iconic red & blue suit from the comics, complete with the web glider & expressive eye visors. The background score by Michael
Giacchino sticks with you, long after the film ends. The performances make the movie, flawless.
</p>
<p>IMDB Rating :<span>7.4/10</span></p>
</div>
</div>
</div>
</div>
</main>
<footer class="text-center">
<p>&copy; 2021 Movie Review</p>
</footer>
</body>
</html>