2025-02-15 17:34:39 +04:00

73 lines
2.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>О фильме - Груз 200</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Главная</a></li>
<li><a href="catalog.html">Каталог</a></li>
<li><a href="films.html">Фильмы</a></li>
<li><a href="seriales.html">Сериалы</a></li>
<li><a href="reviews.html">Рецензии</a></li>
</ul>
</nav>
<div class="logo">
<img src="resources/logo.webp" alt="Online Cinema Theater Logo">
</div>
</header>
<main>
<section class="movie-details">
<div class="movie-poster">
<img src="resources/movies/gruz.jpeg" alt="Movie Poster">
</div>
<div class="movie-info">
<h1>Груз 200</h1>
<table>
<tr>
<th class="header-th">Продолжительность</th>
<td>1 час 50 минут</td>
</tr>
<tr>
<th class="header-th">Год выпуска</th>
<td>2007</td>
</tr>
<tr>
<th class="header-th">Страна</th>
<td>Россия</td>
</tr>
<tr>
<th class="header-th">Режиссер</th>
<td>Алексей Балабанов</td>
</tr>
<tr>
<th class="header-th">Жанр</th>
<td>триллер, драма, криминал</td>
</tr>
</table>
<br>
<p>Описание:</p>
<p>
Груз 200 - это история о двух братьях, которые вместе с другими людьми отправляются в грузовике на
поиски золота в Африке.
Однако путь к цели оказывается опасным и сложным, и братья сталкиваются с различными препятствиями, в
том числе с коррупцией и жестокостью.
</p>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/dQw4w9WgXcQ?si=iaZ0q33EJFBzeIZ_?autoplay=1"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</section>
</main>
<footer>
<p>&copy; 2022 Online Cinema Theater. All rights reserved.</p>
</footer>
</body>
</html>