78 lines
2.2 KiB
HTML
78 lines
2.2 KiB
HTML
|
<!DOCTYPE html>
|
|||
|
<html lang="en">
|
|||
|
|
|||
|
<head>
|
|||
|
<meta charset="UTF-8">
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
<title>Цена на декор</title>
|
|||
|
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
|
|||
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|||
|
<link rel = "stylesheet" href="style.css" />
|
|||
|
</head>
|
|||
|
<header>
|
|||
|
|
|||
|
<nav class="navbar navbar-expand-lg navbar-dark">
|
|||
|
<div class="container-fluid">
|
|||
|
|
|||
|
<a class="navbar-brand" href="index.html">тяп-ляп</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="collapse navbar-collapse" id="navbarNav">
|
|||
|
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
|
|||
|
|
|||
|
<li class="nav-item">
|
|||
|
<a href="price.html">Прайс</a>
|
|||
|
</li>
|
|||
|
|
|||
|
<a href="aboutUs.html">О нас</a>
|
|||
|
</li>
|
|||
|
|
|||
|
<li class="nav-item">
|
|||
|
<a href="contact.html">☎Связаться с нами</a>
|
|||
|
</li>
|
|||
|
</ul>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</nav>
|
|||
|
</header>
|
|||
|
|
|||
|
|
|||
|
|
|||
|
<body>
|
|||
|
<price>
|
|||
|
<table>
|
|||
|
<thead>
|
|||
|
<tr>
|
|||
|
<th scope="col" height="100">Декор</th>
|
|||
|
<th scope="col">Количество</th>
|
|||
|
<th scope="col">Цена/руб</th>
|
|||
|
</tr>
|
|||
|
</thead>
|
|||
|
<tbody>
|
|||
|
<tr>
|
|||
|
<th scope="row" height="70">Ягоды</th>
|
|||
|
<td>100г</td>
|
|||
|
<td>150</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<th scope="row" height="70">Леденцы</th>
|
|||
|
<td>1шт</td>
|
|||
|
<td>40</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<th scope="row" height="70">Шоколад</th>
|
|||
|
<td>100г</td>
|
|||
|
<td>90</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<th scope="row" height="70">Зефир</th>
|
|||
|
<td>100г</td>
|
|||
|
<td>50</td>
|
|||
|
</tr>
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
</price>
|
|||
|
</body>
|
|||
|
</html>
|