-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- fiv icon -->
<link rel="shortcut icon" href="logo.png" type="image/x-icon">
<!-- liked bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<style>
.text-color{
color: #ff7f50;
}
</style>
<title>Book Store</title>
</head>
<body class="bg-light">
<!-- search bar -->
<h1 class="text-center text-warning mt-5 "><img class="" width="60px" src="logo.png" alt="" srcset="">Find Your Favorite Books Here...</h1>
<section class="container mt-3 mb-2">
<div class="input-group mb-3">
<input id="search-input" type="text" class="form-control" placeholder="Search here" aria-label="Recipient's username" aria-describedby="button-addon2">
<button onclick="searchBook()" class="btn btn-outline-secondary" type="button" id="button-addon2">Search</button>
</div>
</section>
<p class="text-center text-warning mb-3">Search result found: <span id="result-counter"></span></p>
<!-- error massage -->
<h4 id="error-message" class="text-center text-color">Opps, something went wrong!!😤 <br> Try again...😬.</h4>
<!-- search result section -->
<section class="container">
<div id="search-result" class="row row-cols-1 row-cols-md-3 g-4">
<!-- search result -->
<!-- search result end -->
</div>
</section>
<!-- linked JS file -->
<script src="app.js"></script>
</body>
</html>