2023-12-02 02:43:00 +04:00

76 lines
2.6 KiB
HTML

<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="./css/style.css" />
</head>
<body>
<header>
<a class="navbar-brand p-0" href="#">
<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>
<catalog>
<p class="title">КАТАЛОГ</p>
<div class="text-center">
<p class="text-catalog">Столы</p>
<a href="products/productTable1.html"
><img src="images/table1.png" class="rounded" alt="..."
/></a>
<a href="products/productTable2.html"
><img src="images/table2.png" class="rounded" alt="..." />
</a>
<a href="products/productTable3.html"
><img src="images/table3.png" class="rounded" alt="..."
/></a>
</div>
<div class="text-center">
<p class="text-catalog">Стулья</p>
<a href="products/productChair1.html"
><img src="images/chair1.png" class="rounded" alt="..."
/></a>
<a href="products/productChair2.html"
><img src="images/chair2.png" class="rounded" alt="..." />
</a>
<a href="products/productChair3.html"
><img src="images/chair3.png" class="rounded" alt="..."
/></a>
</div>
<div class="text-center">
<p class="text-catalog">Диваны</p>
<a href="products/productSofa1.html"
><img src="images/sofa1.png" class="rounded" alt="..."
/></a>
<a href="products/productSofa2.html"
><img src="images/sofa2.png" class="rounded" alt="..." />
</a>
<a href="products/productSofa3.html"
><img src="images/sofa3.png" class="rounded" alt="..."
/></a>
</div>
</catalog>
</body>
</html>