Files
2025-05-28 21:37:05 +04:00

62 lines
2.1 KiB
HTML
Raw Permalink 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">
<link rel="icon" href="img/icon.png"/>
<title>Ваши фильмы</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<div class="header-logo">
<a href="index.html">
<img src="img/icon.png" alt="Логотип">
</a>
<h1>Библиотека</h1>
</div>
<div class="nav-container">
<button class="menu-button">Меню</button>
<div class="nav-dropdown">
<ul class="features-menu">
<li><a href="movies.html">Фильмы</a></li>
<li><a href="series.html">Сериалы</a></li>
<li><a href="library.html">Библиотека</a></li>
<li><a href="about.html">О нас</a></li>
</ul>
</div>
</div>
<nav class="nav-links">
<a href="movies.html">Фильмы</a>
<a href="series.html">Сериалы</a>
<a href="library.html">Библиотека</a>
<a href="about.html">О нас</a>
</nav>
</div>
<div class="content">
<h2>Просмотренные</h2>
</div>
<div class="movie-list">
<div class="movie-item">
<img src="img/movie-posters/marsianin.jpg">
<p>Марсианин (2015)</p>
</div>
<div class="movie-item">
<img src="img/movie-posters/brat.jpg">
<p>Брат (2009)</p>
</div>
</div>
<footer class="footer">
<div class="footer-info">
<p>Контакты: <span class="email">ebatyushka@mail.com</span>, <span class="phone">+7&nbsp;123&nbsp;456&nbsp;7890</span></p>
<p>Адрес: г. Москва, ул. Примерная, 1</p>
</div>
<div class="footer-social">
<a href="https://t.me/u_strawberry"><img src="img/telegram.png"></a>
</div>
</footer>
</body>
</html>