PIbd-21_Valitov_D.F_IP/html/book-details.html

84 lines
3.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>Book Details</title>
<link rel="stylesheet" href="/node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="/css/custom.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
<a class="navbar-brand" href="../index.html">Book Store</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">
<form class="d-flex mx-auto w-50">
<input class="form-control me-2" type="search" placeholder="Какая Ваша любимая книга? :)" aria-label="Search" width="100px">
<button class="btn btn-outline-light" type="submit">Поиск</button>
</form>
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="book-list.html">Каталог</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">О нас</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cart.html" style="display: inline-block;">Корзина</a>
<!-- <img src="/src/icons/cart.svg" width="30px"> -->
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<section class="book-page py-5">
<div class="container">
<h1 class="display-4 mb-4">Информация о книге</h1>
<div class="row">
<div class="col-md-4">
<img src="https://via.placeholder.com/300x200" class="img-fluid" alt="Book Cover">
</div>
<div class="col-md-8">
<h2 class="mb-4">Война и мир</h2>
<p class="lead mb-4">/описание/</p>
<ul class="list-unstyled mb-4">
<li><strong>Автор:</strong> Лев Толстой</li>
<li><strong>Цена:</strong> $10.99</li>
<li><strong>Количество страниц:</strong> 200</li>
<li><strong>Год публикации:</strong> 2020</li>
</ul>
<button class="btn btn-primary btn-lg">Добавить в корзину</button>
</div>
</div>
</div>
</section>
</main>
<footer class="bg-dark text-white py-4">
<div class="container">
<div class="row">
<div class="col-md-6">
<p>&copy; 2024 Book Store. All rights reserved.</p>
</div>
<div class="col-md-6 text-md-end">
<a href="#" class="text-white mr-3">Privacy Policy</a>
<a href="#" class="text-white">Terms of Service</a>
</div>
</div>
</div>
</footer>
<script src="../js/script.js"></script>
</body>
</html>