2023-10-23 13:48:44 +04:00
|
|
|
|
<html lang="ru" class="h-100">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Контакты</title>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<script type="module" 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="./style.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body class="d-flex flex-column h-100">
|
|
|
|
|
<header>
|
|
|
|
|
<nav class="navbar navbar-expand-md">
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
<a class="navbar-brand" href="/">
|
2023-11-02 02:38:40 +04:00
|
|
|
|
<img src="Images/logo.png" alt="logo" width="128">
|
2023-10-23 13:48:44 +04:00
|
|
|
|
</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-start" id="navbarNav">
|
|
|
|
|
<div class="navbar-nav">
|
|
|
|
|
<a class="nav-link" href="index.html">Каталог</a>
|
|
|
|
|
<a class="nav-link" href="stock.html">Акции</a>
|
|
|
|
|
<a class="nav-link active" href="contacts.html">Контакты</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="navbar-collapse collapse justify-content-end" id="navbarNav">
|
|
|
|
|
<div class="navbar-nav">
|
|
|
|
|
<a class="btn custom-btn" href="personalAccountLogin.html">Войти</a>
|
|
|
|
|
<a class="btn btn-warning" href="basket.html">Корзина</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</nav>
|
|
|
|
|
</header>
|
|
|
|
|
<main class="container-fluid p-2">
|
|
|
|
|
<div class="d-flex justify-content-center align-items-center">
|
|
|
|
|
<h1 class="text-warning font-weight-bold">Контакты</h1>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="div d-flex justify-content-center">
|
|
|
|
|
<iframe src="https://yandex.ru/map-widget/v1/?um=constructor%3A0643c92cbdf3809080e5dfb2804b473ea00af31cfabe6fee08676c59d8675f01&source=constructor" class="img-fluid" style="width: 1280; height: 720px;"></iframe>
|
|
|
|
|
</div>
|
|
|
|
|
<a href="tel:71112223344" class="text-warning font-weight-bold" style="font-size: 35px; margin-left: 10px; margin-top: 10px;">7 111 222 33 44</a>
|
|
|
|
|
<h2 class="font-weight-bold" style="font-size: 35px; margin-left: 10px; margin-top: 10px;">ул. Северный венец 32</h2>
|
|
|
|
|
<p style="font-size: 25px; margin-left: 10px; margin-top: 10px;">Доставка и самовывоз 10:00 — 23:00</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center">
|
|
|
|
|
Все права защищены © 2023-2024
|
|
|
|
|
</footer>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|