45 lines
1.4 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="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/sortir-logo.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>
<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>
<p>Здесь вы найдете <strong>только</strong> лучшие фильмы и сериалы</p>
</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>
</body>
</html>