-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRich.html
126 lines (117 loc) · 5.27 KB
/
Rich.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!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="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<!-- Header with Navbar -->
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">BookStore</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 ml-auto">
<li class="nav-item active"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="books.html">Books</a></li>
<li class="nav-item"><a class="nav-link" href="#">Categories</a></li>
<li class="nav-item"><a class="nav-link" href="#">About Us</a></li>
<li class="nav-item"><a class="nav-link" href="#">Contact</a></li>
</ul>
<form class="form-inline ml-3">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
</header>
<!-- Book Details -->
<div class="container my-5">
<div class="row">
<div class="col-md-4">
<img src="when the body says no.jpg" class="img-fluid" alt="Book Cover">
</div>
<div class="col-md-8">
<h3>Book Title</h3>
<h5>Author: John Doe</h5>
<p class="text-muted">Publication Date: January 1, 2024</p>
<h4>$19.99</h4>
<p>This is a detailed description of the book. It provides an overview of the book's content, themes, and key points. The description is intended to give potential readers a clear idea of what to expect from the book.</p>
<button class="btn btn-primary mr-2" onclick="location.href='cart.html';">Add to Cart</button>
<button class="btn btn-secondary">Buy Now</button>
</div>
</div>
<div class="row mt-5">
<div class="col-md-12">
<h4>About the Author</h4>
<p>John Doe is a renowned author known for his work in the genre. He has written several bestselling novels and has a large following of readers who appreciate his storytelling and writing style.</p>
</div>
</div>
<div class="row mt-5">
<div class="col-md-12">
<h4>Reviews</h4>
<div class="media mb-4">
<div class="media-body">
<h5 class="mt-0">User 1</h5>
<p>This book is fantastic! The plot is gripping and the characters are well-developed. Highly recommend!</p>
</div>
</div>
<div class="media mb-4">
<div class="media-body">
<h5 class="mt-0">User 2</h5>
<p>I couldn't put this book down. The author has done a great job with the storytelling.</p>
</div>
</div>
<div class="media mb-4">
<div class="media-body">
<h5 class="mt-0">User 3</h5>
<p>An enjoyable read from start to finish. Looking forward to reading more from this author.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-light text-center text-lg-start">
<div class="container p-4">
<div class="row">
<div class="col-lg-6 col-md-12 mb-4 mb-md-0">
<h5 class="text-uppercase">Footer Content</h5>
<p>Here you can use rows and columns to organize your footer content.</p>
</div>
<div class="col-lg-3 col-md-6 mb-4 mb-md-0">
<h5 class="text-uppercase">Links</h5>
<ul class="list-unstyled mb-0">
<li><a href="#!" class="text-dark">Link 1</a></li>
<li><a href="#!" class="text-dark">Link 2</a></li>
<li><a href="#!" class="text-dark">Link 3</a></li>
<li><a href="#!" class="text-dark">Link 4</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 mb-4 mb-md-0">
<h5 class="text-uppercase">Links</h5>
<ul class="list-unstyled mb-0">
<li><a href="#!" class="text-dark">Link 1</a></li>
<li><a href="#!" class="text-dark">Link 2</a></li>
<li><a href="#!" class="text-dark">Link 3</a></li>
<li><a href="#!" class="text-dark">Link 4</a></li>
</ul>
</div>
</div>
</div>
<div class="text-center p-3">
© 2023 BookStore:
<a class="text-dark" href="#">Privacy Policy</a> |
<a class="text-dark" href="#">Terms of Service</a> |
<a class="text-dark" href="#">Contact</a>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>