2025-02-21 21:24:42 +04:00

103 lines
4.2 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Title</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-container">
<div class="logo">
<img src="resources/logo.webp" alt="Online Cinema Theater Logo">
<span>Online Cinema Theater</span>
</div>
<nav>
<ul class="navbar">
<li><a href="index.html">Главная</a></li>
<li><a href="catalog.html">Каталог</a></li>
<li><a href="reviews.html">Рецензии</a></li>
<li class="dropdown">
<span>Что глянуть? ▾</span>
<ul class="features-menu">
<li><a href="films.html">Фильмы</a></li>
<li><a href="seriales.html">Сериалы</a></li>
</ul>
</li>
</ul>
</nav>
</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>
<div class="footer-container">
<div class="contact-info">
<h3>Контактная информация</h3>
<p>Телефон: +7 (123) 456-78-90</p>
<p>Email: info@cinema.com</p>
<p>Адрес: ул. Примерная, 123, Москва, Россия</p>
</div>
<div class="social-media">
<h3>Мы в соцсетях</h3>
<a href="#"><img src="resources/icons/icq.svg" alt="ICQ"></a>
<a href="#"><img src="resources/icons/tg.webp" alt="Telegram"></a>
<a href="#"><img src="resources/icons/vk.webp" alt="VK"></a>
</div>
<div class="working-hours">
<h3>Время работы</h3>
<p>Понедельник - Пятница: 10:00 - 22:00</p>
<p>Суббота - Воскресенье: 12:00 - 24:00</p>
</div>
</div>
<p>&copy; 2022 Online Cinema Theater. All rights reserved.</p>
</footer>
</body>
</html>