Internet-programming/lab3/company.html
2024-01-12 11:45:16 +04:00

71 lines
4.9 KiB
HTML
Raw 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>Tokki</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/Tokki.png" alt="logo" width="90">
</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="company.html">О компании</a>
<a class="nav-link active" href="delivery.html">Доставка</a>
</div>
</div>
<div class="navbar-collapse collapse justify-content-end" id="navbarNav">
<div class="navbar-nav">
<a class="nav-link" href="personalAccountLogin.html">Войти</a>
<a class="nav-link" style="padding-right: 50;" 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 font-weight-bold">О компании</h1>
</div>
<div class="container">
<div class="row">
<h2 class="font-weight-bold" style="font-size: 35px; margin-left: 10px; margin-top: 10px;">Наши преимущества:</h2>
<ul>
<li class="font-weight-bold" style="font-size: 20px; margin-left: 10px; margin-top: 10px;"> привозим официально и напрямую из Южной Кореи</li>
<li class="font-weight-bold" style="font-size: 20px; margin-left: 10px; margin-top: 10px;"> качественная упаковка и обслуживание</li>
<li class="font-weight-bold" style="font-size: 20px; margin-left: 10px; margin-top: 10px;"> быстрая отправка</li>
<li class="font-weight-bold" style="font-size: 20px; margin-left: 10px; margin-top: 10px;"> быстрая доставка (в среднем 8 дней по России)</li>
<li class="font-weight-bold" style="font-size: 20px; margin-left: 10px; margin-top: 10px;"> удобная оплата через сайт</li>
<li class="font-weight-bold" style="font-size: 20px; margin-left: 10px; margin-top: 10px;"> большой ассортимент в наличии в Ульяновске</li>
<li class="font-weight-bold" style="font-size: 20px; margin-left: 10px; margin-top: 10px;"> никаких доплат из-за веса, количества, выбора версии и т.д.</li>
<li class="font-weight-bold" style="font-size: 20px; margin-left: 10px; margin-top: 10px;"> после оплаты заказа на эл. почту Вам приходит чек, подтверждающий Вашу покупку</li>
<li class="font-weight-bold" style="font-size: 20px; margin-left: 10px; margin-top: 10px;"> работаем почти 8 лет</li>
</ul>
<p></p>
<p></p>
<p></p>
<p style="font-size: 25px; text-align: center; margin-left: 10px; margin-top: 10px;">За время работы магазина, мы уже продали более 60 000 альбомов.</p>
<p style="font-size: 25px; text-align: center; margin-left: 10px; margin-top: 10px;">Также у нас есть физический магазин в Ульяновске, где весь товар можно увидеть в живую!</p>
<p style="font-size: 25px; text-align: center; margin-left: 10px; margin-top: 10px;">Адрес магазина: Ульяновск, ул. Северный Венец 32. Время работы: каждый день с 13:00 до 21:00</p>
</div>
</div>
</main>
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center">
Tokki © 2023-2024
</footer>
</body>
</html>