forked from vimalathithan17/vpt-2023-aug-Vimalathithan.D
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (76 loc) · 2.64 KB
/
Copy pathindex.html
File metadata and controls
80 lines (76 loc) · 2.64 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="images/books.png" type="image/x-icon" />
<title>The Book Hub</title>
<script src="main.js" defer></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<div class="container">
<section class="search">
<img class="image" src="images/search-bg2.jpg" alt="" />
<div class="top-content">
<h1 class="search_head">
The book Hub
</h1>
<div class="searchbar">
<input id="inp" type="text" placeholder="Search for books and categories..."/>
<img
src="images/icons8-search.svg"
alt=""
class="btn"
onclick="fetchbooks()"
/>
</div>
</div>
</section>
<section id="result">
<h3 class="result_head"></h3>
<div class="container_result" id="container_result"></div>
</section>
<section id="book_details">
<!--
<h5 id="book_title"><span>Lorem, ipsum dolor.</span></h5>
<div id="book_detail_container">
<div class="book_img">
<img
src="https://covers.openlibrary.org/b/isbn/9780534385569-M.jpg"
alt=""
/>
</div>
<div class="details">
<h5 id="book_author">Author: <span>harry potter</span></h5>
<h5 id="book_publisher">
Publisher: <span>Lorem, ipsum.</s>
</h5>
<h5 id="book_first_published">
First published year: <span>2019</span>
</h5>
<h5 id="book_description">
description:
<br>
<span>
Lorem ipsum dolor sit, amet
consectetur adipisicing elit. Dolorem, optio! Lorem ipsum
dolor sit amet consectetur, adipisicing elit. Aperiam dolore
non voluptate cupiditate repellat exercitationem assumenda
dolor facere nemo tenetur.</span>
</h5>
</div>
<div id="back">back</div>
</div>
-->
</section>
</div>
</main>
</body>
</html>