Internet_Programming_PIbd-2.../лаб2/прим1/index.html

85 lines
4.1 KiB
HTML
Raw Normal View History

2023-11-09 22:45:49 +04:00
<html lang="ru">
<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">
<header>
<nav class="navbar navbar-expand-md navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/">
<name>
<img src ="images/logo.png" class="img-fluid" alt = "...">
Рарити шоп
</name>
</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-end" id="navbarNav">
<div class="navbar-nav">
<a class="nav-link active" href="./index.html">Главная</a>
<a class="nav-link active" href="./page5.html">Каталог</a>
<a class="nav-link active" href="./page2.html">Контакты</a>
<a class="nav-link active" href="./page3.html">Личный кабинет</a>
<a class="nav-link active" href="./page9.html">Корзина</a>
</div>
</div>
</div>
</nav>
</header>
<main class="container-fluid p-2 m-0" style="display: flex; flex-direction: column;">
<div class = "container-fluid m-0">
<div class = "row">
<div class = "col-12">
<h1 class = "text-center title h1" style="color: white;">
Платья на любую фигуру и торжество от популярного дизайнера!
</h1>
</div>
</div>
</div>
<div class = "container-fluid m-0">
<div class="row rowAdd h-100 m-0" style="display: flex; flex-direction: row;">
<div class="col col-12 col-sm-12 col-md-4 col-lg-4 col-xl-4 add1 h-100 " style="display: flex; flex-direction: column;">
<div class = "text-center" style = "color: white;">
Вечерние платья со скидкой20%
</div>
<div class = "h-100 d-flex flex-column justify-content-center align-items-center">
<img src ="images/вечернееплатье.png" class=" w-25 img-fluid" alt = "...">
</div>
</div>
<div class="col col-12 col-sm-12 col-md-4 col-lg-4 col-xl-4 add2 h-100 " style="display: flex; flex-direction: column;">
<div class = "text-center" style = "color: white;">
Бесплатное снятие мерок на свадебное платье каждый вторник
</div>
<div class = "h-100 d-flex flex-column justify-content-center align-items-center">
<img src ="images/свадебное платье.png" class="w-25 img-fluid" alt = "...">
</div>
</div>
<div class="col col-12 col-sm-12 col-md-4 col-lg-4 col-xl-4 add3 h-100 " style="display: flex; flex-direction: column;">
<div class = "text-center" style = "color: white;">
Предоставляем услуги по ремонту платьев
</div>
<div class = "h-100 d-flex flex-column justify-content-center align-items-center">
<img src ="images/нити и игла.png" class="w-75 img-fluid" alt = "...">
</div>
</div>
</div>
</div>
</main>
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-left align-items-left fixed-bottom">
Рарити Шоп.ру Лёвушкина Анна ПИбд-21
</footer>
</body>
</html>