PIbd-22_Puchkina_Internet_P.../laba2/productTable1.html
2023-12-02 02:43:00 +04:00

54 lines
1.9 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.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Товар</title>
<link rel="stylesheet" href="styles.css" />
<link
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</head>
<body>
<header>
<a class="navbar-brand p-0" href="catalog.html">
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
</a>
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
<nav>
<a class="navbar-brand p-0" href="cart.html">
<img src="images/iconsCor.png" alt="Корзина" width="37" />
</a>
<a class="navbar-brand p-0" href="account.html">
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
</a>
</nav>
</header>
<product>
<div class="title-pageproduct">Стол журнальный</div>
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
<div class="col text-center">
<img class="rounded" src="images/table1.png" alt="..." />
</div>
<div class="col">
<div class="card">
<div class="title-card">Характеристики</div>
<div class="color">Цвет</div>
<div class="color-info">Темно-коричневый</div>
<div class="size">Размеры</div>
<div class="size-info">55 * 55 * 45 см</div>
<div class="price">Общая цена</div>
<div class="price-info">22 998 руб.</div>
<button type="button" class="btn">
Добавить <br />
в корзину
</button>
</div>
</div>
</div>
</product>
</body>
</html>