60 lines
2.8 KiB
HTML
60 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Главная</title>
|
||
<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"/>
|
||
<script type="module" src="./node_modules/bootstrap/dist/js/bootstrap.bundle.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="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,700&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" href="css/style.css">
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<nav class="navbar navbar-explad-lg" style="background-color: aquamarine;">
|
||
<div class="d-flex flex-column mb-3">
|
||
<div class="p-2"><a href="index.html"><img src="source/logo.png" width="200px" height="80px" alt="logo"></a></div>
|
||
</div>
|
||
<div class="d-flex justify-content-aruond">
|
||
<div class="p-2"><a id="sslk" href="page2.html" style="font-size: 20px;">Услуги</a></div>
|
||
<div class="p-2"><a id="sslk" href="page3.html" style="font-size: 20px;">Вакансии</a></div>
|
||
</div>
|
||
<div class="d-flex justify-content-end">
|
||
<div class="p-2">
|
||
<a href="pageAdm.html"><img src="source/phone.png" alt="phone" width="20px" height="20px"></a>
|
||
</div>
|
||
<div class="p-2"><p style="font-size: 20px;">+7 937 811 91 41</p></div>
|
||
</div>
|
||
</nav>
|
||
</header>
|
||
<main>
|
||
<div class="row" id="cardsALL">
|
||
</div>
|
||
</main>
|
||
<footer class="footer mt-auto" style="background-color: aquamarine;">
|
||
<div class="containerok fixed bottom-0">
|
||
<div class="d-flex">
|
||
<div class="p-2"><img src="source/logo.png" class="img-fluid" alt="logo"></div>
|
||
<div class="p-2 flex-grow-1"><p>Время работы:<br>Пн-пт 08:00 - 20:00<br>Сб-Вс 10:00 - 20:00</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
<script type="module">
|
||
import validation from "./js/validation";
|
||
import { linesPageForm } from "./js/lines";
|
||
import { fillOutCard } from "./js/lines";
|
||
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
validation();
|
||
linesPageForm();
|
||
fillOutCard();
|
||
});
|
||
</script>
|
||
</body>
|
||
</html> |