65 lines
3.1 KiB
HTML
65 lines
3.1 KiB
HTML
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Онлайн-кинотеатр</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
|
|
<link href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet"/>
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
</head>
|
|
<body class ="d-flex flex-column h-100">
|
|
<header id="header" class="header row w-100 m-0 mb-3">
|
|
<div class="p-0">
|
|
<div class="d-flex pt-lg-3 px-lg-5 p-0 justify-content-center row w-100 m-0">
|
|
<div class = "d-flex col p-1 pe-0 fs-2 bg-cyan mw-100 mh-100 text-break flex-grow-1 justify-content-center">
|
|
<a class ="text-decoration-none text-center text-black fs-2 fw-normal font-family-Average Sans py-2" href="index.html">Онлайн-кинотеатр</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<main class="container-fluid flex-shrink-0">
|
|
<article>
|
|
<div class="row m-5">
|
|
<table class="table bg-white">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">#</th>
|
|
<th scope="col">Название</th>
|
|
<th scope="col">Редактировать</th>
|
|
<th scope="col">Удалить</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="table-group-divider">
|
|
<tr>
|
|
<th scope="row">1</th>
|
|
<td>Огонь</td>
|
|
<th scope="col"><a class="btn bg-cyan" href="add.html">Редактировать</a></th>
|
|
<th scope="col"><a class="btn bg-cyan">Удалить</a></th>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">2</th>
|
|
<td>Брат</td>
|
|
<th scope="col"><a class="btn bg-cyan" href="add.html">Редактировать</a></th>
|
|
<th scope="col"><a class="btn bg-cyan">Удалить</a></th>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">3</th>
|
|
<td>Гарри Поттер</td>
|
|
<th scope="col"><a class="btn bg-cyan" href="add.html">Редактировать</a></th>
|
|
<th scope="col"><a class="btn bg-cyan">Удалить</a></th>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="col"><a class="btn bg-cyan" href="add.html">Добавить фильм</a></div>
|
|
</div>
|
|
</article>
|
|
</main>
|
|
<footer class="footer mt-auto fixed bottom-0">
|
|
<div class= "bg-dark-blue d-flex text-center justify-content-center">
|
|
<p class="text-black fs-5 fw-normal font-family-Average Sans">Фильмы нам не пренадлежат</p>
|
|
</div>
|
|
</footer>
|
|
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html> |