67 lines
2.8 KiB
HTML
67 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Elitist</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js" type="text/javascript"></script>
|
|
<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="./css/style.css">
|
|
</head>
|
|
<body class="page3">
|
|
<header>
|
|
<nav class="navbar navbar-expand-md navbar-dark">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="./index.html">
|
|
<i class="fa-solid fa-microchip"></i>
|
|
Elitist
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
|
|
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
|
|
<div class="navbar-collapse collapse justify-content-end" id="navbarNav">
|
|
<div class="navbar-nav">
|
|
<a class="nav-link active" href="./index.html">Главная страница</a>
|
|
<a class="nav-link" href="./page2.html">Жанры</a>
|
|
<a class="nav-link" href="./page3.html">Бестселлеры</a>
|
|
<a class="nav-link" href="./page4.html">Админ</a>
|
|
<a class="nav-link" href="./page5.html">Войти</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
<main class="container main_pannel">
|
|
<div id="my-id-for-text" class="row">
|
|
</div>
|
|
</main>
|
|
|
|
<div class="modal" id="my-modal">
|
|
<div class="modal-box">
|
|
<button id="close-modal-btn" class="modal-close">
|
|
<svg width="24" height="24" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.11 2.697L2.698 4.11 6.586 8l-3.89 3.89 1.415 1.413L8 9.414l3.89 3.89 1.413-1.415L9.414 8l3.89-3.89-1.415-1.413L8 6.586l-3.89-3.89z" fill="#000"></path>
|
|
</svg>
|
|
<ul>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center fixed-bottom">
|
|
Жирнова Алена ПИбд-21
|
|
</footer>
|
|
<script type="module">
|
|
import validation from "./js/validation";
|
|
import { linesForm } from "./js/lines";
|
|
import {linesFormOnIndex} from "./js/lines";
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
validation();
|
|
linesFormOnIndex();
|
|
//linesForm();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |