moviereview / blackadam.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.superherohype.com/wp-content/uploads/sites/4/2021/03/Black-Adam-Poster.jpg" alt="Movie Poster">
<div class="movie-details">
<h2>Black Adam</h2>
<p>Description</p>
<p>It stars Dwayne Johnson as Teth-Adam / Black Adam, an ancient superhuman who is released from his magic imprisonment by a group of archeologists to free the nation of Kahndaq from the crime syndicate Intergang, whose local leader plans to obtain an ancient relic called the
Crown of Sabbac to take control of the nation.</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>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/mkomfZHG5q4?si=OR-Xd9QBn7x7t6P_" allowfullscreen></iframe>
</div>
</div>
<h3>Review</h3>
<p>Black Adam is the cinematic equivalent of a tuneless marching band running
endless circles around your increasingly throbbing head. The score is
omnipresent and oppressive. The action frantic and relentless. The entire
thing just keeps beating you over the head until you throw up your hands and
surrender. And then it knocks you to the ground and starts kicking you. Ultimately whatever virtues it may have had are buried under the rubble from its nonstop assault on your senses.
Watching this film was like boxing a 'roided up octopus.</p>
<p>IMDB Rating :<span>6.3/10</span></p>
</div>
</div>
</div>
</div>
</main>
<footer class="text-center">
<p>&copy; 2021 Movie Review</p>
</footer>
</body>
</html>