-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.html
85 lines (73 loc) · 2.89 KB
/
books.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Books Page | Book Hub</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/books.css">
<!-- FontAwesome CDN -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.2/css/all.css">
</head>
<body>
<header class="header">
<div class="logo">
<div class="block">
<img src="./images/Logo/logo1.png" alt="">
</div>
<p class="text">Book Hub</p>
</div>
</header>
<div class="seperator"></div>
<section class="tagLine">
<p>We <span>Open Book Store</span> feature rare and vintage books here on our site. We update this page regularly so come back often!</p>
</section>
<section class="books">
<div class="book">
<div class="cover">
<div class="block">
<img class="front" src="./images/bookFront.jpg" alt="">
<img class="back" src="./images/bookBack.jpg" alt="">
</div>
<div class="likes">
<p class="heart"><i class="far fa-heart"></i></p>
<p class="count">10.2k</p>
</div>
</div>
<div class="content">
<p>Title of the book by Author of this book</p>
<p>Shivam Sharma</p>
</div>
</div>
</section>
<div class="seperator"></div>
<div class="wall"></div>
<section class="details">
<div class="close"><i class="fas fa-times"></i></div>
<div class="left">
<!-- <div class="block">
<img src="./images/bookFront.jpg" alt="">
</div>
<p class="uploaded" >uploaded by: Shivam Sharma</p> -->
</div>
<div class="right">
<!-- <p class="title">Title of the book</p>
<div class="likes">
<p class="heart"><i class="fas fa-heart"></i></p>
<p class="count">10.2k</p>
</div>
<p class="description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit praesentium omnis libero labore numquam pariatur quas non est reiciendis iure harum ea ad mollitia quisquam dolor saepe, dolorem nesciunt magnam.</p>
<div class="download">
<div class="icon"><i class="fas fa-file-pdf"></i></div>
<div class="text">Download Now</div>
</div> -->
</div>
</section>
<!-- JQuery CDN -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="./js/books.js"></script>
<script src="./js/likes.js"></script>
<script src="./js/details.js"></script>
</body>
</html>