-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 1.98 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Book Archive - Search</title>
<!-- Fav Icon -->
<link rel="shortcut icon" href="assets/favImg.svg" type="image/x-icon">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<!-- Custom Style -->
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<h1 class="text-center mt-4 mb-5 themeLetter" style="letter-spacing: 5px"> Book Archive </h1>
<!-- Search Book -->
<div class="container">
<div class="searchBook">
<div class="row">
<div class="col-md-8 col-12 mx-auto">
<h2 class="themeLetter"> Search Your Favourite Book </h2>
<div class="input-group mb-3">
<input id="searchBook" type="text" class="form-control"
placeholder="Type Anything Book Name & Hit Enter"
aria-label="Search Your Favourite Book" aria-describedby="searchBtn">
<button class="btn" type="button" id="searchBtn" onclick="bookSearch()">
Search
</button>
</div>
</div>
</div>
</div>
<div class="searchInfo" id="resultInfo"></div>
<div class="row" id="bookResult"></div>
</div>
<!-- // Script // -->
<!-- Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"></script>
<!-- Custom -->
<script src="assets/app.js"></script>
</body>
</html>