-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
159 lines (142 loc) · 5.92 KB
/
products.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- font -->
<script src="https://kit.fontawesome.com/f75965a7f6.js" crossorigin="anonymous"></script>
<!--CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<title>My Book Shelf</title>
</head>
<body>
<div id="header">
<div class="container">
<div class="row">
<div class="col-md-4">
<h1 id="logo"><a id="companycom" href="./home">My Book Shelf</a></h1>
</div>
<div class="col-md-8">
<ul id="menu" class="float-md-right">
<li><a href="index.html">Home</a></li>
<li><a href="summery.html">Book Summery</a></li>
<li><a href="reviews.html">Reviews</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</ul>
</div>
</div>
</div>
</div>
<div class="container" id="productpage">
<div class="row">
<div class="col-md-4" id="">
<div id="card">
<img src="images/enola1.jpg" alt="Denim Jeans" style="width:100%">
<h3>Enola Holmes</h3>
<p>- Nancy Springer</p>
<p class="price">$31.99</p>
<p><button>Add to Cart</button></p>
</div>
</div>
<div class="col-md-4">
<div id="card">
<img src="images/sher2.jpg" alt="Denim Jeans" style="width:100%">
<h3>Sherlock Holmes</h3>
<p>- James Lovegrove</p>
<p class="price">$32.99</p>
<p><button>Add to Cart</button></p>
</div>
</div>
<div class="col-md-4">
<div id="card">
<img src="images/sher1.jpg" alt="Denim Jeans" style="width:100%">
<h3>Sherlock Wild Street</h3>
<p>- Canon Doyal</p>
<p class="price">$21.99</p>
<p><button>Add to Cart</button></p>
</div>
</div>
<div class="col-md-4">
<div id="card">
<img src="images/harry3.jpg " alt="Denim Jeans" style="width:100%">
<h3>Sherlock and Strange Woman</h3>
<p>- Canon Doyal</p>
<p class="price">$15.99</p>
<p><button>Add to Cart</button></p>
</div>
</div>
<div class="col-md-4">
<div id="card">
<img src="images/harry1.jpg" alt="Denim Jeans" style="width:100%">
<h3>Harry Potter And The Curesed Child</h3>
<p class="price">$19.99</p>
<p>- J.K. Rowling</p>
<p><button>Add to Cart</button></p>
</div>
</div>
<div class="col-md-4">
<div id="card">
<img src="images/harry2.jpg" alt="Denim Jeans" style="width:100%">
<h3>Harry Potter And The Philospher's stone</h3>
<p class="price">$31.99</p>
<p>- J.K. Rowling</p>
<p><button>Add to Cart</button></p>
</div>
</div>
</div>
</div>
<div id="footer-sidebar">
<div class="container section">
<div class="row" id="lastjo">
<div class="col-md-4">
<div class="footer-widget">
<h4>about company</h4>
<p>All rights reserved. No part of this publication may be reproduced</p>
<p>Electronic or mechanical any information storage or retrieval system,</p>
</div>
</div>
<div class="col-md-4">
<div class="footer-widget" id="lnews">
<h4>Latest News</h4>
<li>The fallacy of accent depends for its c.</li>
<li>Depending on the stress put on the words.</li>
<li>Which are not part of the literal meaning</li>
<li>The accenting of certain words or phrase </li>
<li>While politicians delight in both abuse.</li>
</div>
</div>
<div class="col-md-4">
<div class="footer-widget">
<h4>Company Address</h4>
<b>Holywood Hill</b><br>
California USA
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container">
<div class="row">
<div class="col-md-6">copyright@2020</div>
<div class="col-md-6">
<ul id="social-icon" class="float-md-right">
<li><a href="">A</a></li>
<li><a href="">B</a></li>
<li><a href="">C</a></li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>