internet-programming/lab3/paymentAndDelivery.html
2024-01-12 14:27:01 +04:00

55 lines
3.2 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.

<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="/">
<img src="Images/logo.png" alt="logo" width="128">
</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="aboutUs.html">О нас</a>
<a class="nav-link active" href="paymentAndDelivery.html">Оплата и доставка</a>
<a class="nav-link" href="contacts.html">Контакты</a>
</div>
</div>
<div class="navbar-collapse collapse justify-content-end" id="navbarNav">
<div class="navbar-nav">
<a class="btn" href="accountLogin.html">Войти</a>
<a class="btn" 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-success font-weight-bold">Оплата и доставка</h1>
</div>
<h4 class="text-success" style="font-size: 35px; margin-left: 50px; margin-top: 100px;">Способ оплаты</h4>
<p class="text-black" style="font-size: 25px; margin-left: 50px; margin-top: 40px;">Картой онлайн</p>
<h2 class="text-success" style="font-size: 35px; margin-left: 50px; margin-top: 70px;">Доставка</h2>
<p class="text-black" style="font-size: 25px; margin-left: 50px; margin-top: 40px;">Заказ на доставку принимается не менее, чем за 3 часа</p>
<p class="text-black" style="font-size: 25px; margin-left: 50px; margin-top: 50px;">Минимальная стоимость букета на доставку - 1500 р</p>
<p class="text-black" style="font-size: 25px; margin-left: 50px; margin-top: 50px;">Доставим ваш букет бесплатно с 10:00 до 19:00</p>
</main>
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center">
Все права защищены © 2023-2024
</footer>
</body>
</html>