Internet-programming/lab3/price.html

83 lines
2.7 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
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>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand" href="index.html">Bouquets</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 class="nav-link" href="price.html">Прайс</a>
</li>
<li class="nav-item">
<a class="nav-link" href="reviews.html">Отзывы</a>
</li>
<li class="nav-item">
<a class="nav-link" href="application_form.html">Сделать заказ</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<h1>
Цены на цветы (поштучно) при составлении букетов самостоятельно:
</h1>
<price>
<table>
<thead>
<tr bgcolor = "#EEDFCC">
<!-- <th scope="col" width = "200" height = "100">Цветок</th>
<th scope="col" width = "200">Цвет</th>
<th scope="col" width = "200">Цена, руб.</th> -->
<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>Красный</td>
<td>200</td>
</tr>
<tr>
<th scope="row" height = "70">Роза</th>
<td>Белый</td>
<td>150</td>
</tr>
<tr>
<th scope="row" height = "70">Тюльпан</th>
<td>Белый</td>
<td>170</td>
</tr>
<tr>
<th scope="row" height = "70">Тюльпан</th>
<td>Жёлтый</td>
<td>150</td>
</tr>
<tr>
<th scope="row" height = "70">Лилия</th>
<td>Розовый</td>
<td>170</td>
</tr>
</tbody>
</table>
</price>
</body>
</html>