Internet_Programmirovanie_N.../Lab2/fourth.html

74 lines
3.3 KiB
HTML
Raw Normal View History

2023-11-07 12:33:31 +04:00
<!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>
2023-11-07 12:33:31 +04:00
</div>
</main>
<script type="module">
import { linesForm } from "./js/linesUsers";
document.addEventListener('DOMContentLoaded', () => {
linesForm();
});
</script>
2023-11-07 12:33:31 +04:00
<footer class="footer mt-auto d-flex justify-content-center align-items-center" style="height: 100px ;">
Все права защищены и принадлежат ИП Абубакаров Абубакар Абубакарович.
</footer>
</body>
</html>