Internet_Programmirovanie_N.../Lab2/fourth.html
2023-12-15 09:18:21 +03:00

74 lines
3.3 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="ru" class="h-100">
<head>
<meta charset="utf-8">
<title>Моя страница</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></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="styles/style.css">
</head>
<body class="d-flex flex-column h-100" style="height: 100%;">
<header class>
<nav class="navbar navbar-expand-md navbar mb-1">
<div class="container">
<a class="navbar-brand text-" href="index.html">
<img src="img/logo_header.png" alt="Мой логотип" width="150" height="36" >
</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" style ="background-color: white">
<span style = "color: white" class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse align-items-center" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a style = "font-size:20px" class="nav-link ms-2" href="second.html">Фотогалерея</a>
</li>
<li class="nav-item">
<a style = "font-size:20px" class="nav-link ms-2" href="third.html">Контакты</a>
</li>
<li class="nav-item">
<a style = "font-size:20px" class="nav-link ms-2" href="fourth.html">Прейскурант</a>
</li>
<li class="nav-item">
<a style = "font-size:20px" class="nav-link ms-2" href="fifth.html">Отзывы</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="container-fluid p-2">
<div>
<table id="items-table" class=" mx-auto table table-secondary table-hover table-bordered table-striped w-50">
<thead>
<th scope="col" class="w-25"></th>
<th scope="col" class="w-25">Товар</th>
<th scope="col" class="w-25" >Сумма</th>
</thead>
<tbody></tbody>
</table>
</div>
</main>
<script type="module">
import { linesForm } from "./js/linesUsers";
document.addEventListener('DOMContentLoaded', () => {
linesForm();
});
</script>
<footer class="footer mt-auto d-flex justify-content-center align-items-center" style="height: 100px ;">
Все права защищены и принадлежат ИП Абубакаров Абубакар Абубакарович.
</footer>
</body>
</html>