-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (72 loc) · 2.83 KB
/
index.html
File metadata and controls
85 lines (72 loc) · 2.83 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
81
82
83
84
85
<!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" />
<script type="module" src="js/script.js"></script>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/style.css" />
<title>Book Finder</title>
</head>
<body>
<div class="my-container">
<div class="container">
<main>
<div class="py-5 text-center">
<i class="fas fa-book fa-3x"></i>
<h2 class="my-2">Book Finder</h2>
<p class="lead">
Search for books by entering a Title, Author, etc.
</p>
</div>
<div class="row g-5 d-flex justify-content-center">
<div class="col-md-7 col-lg-8">
<form class="needs-validation" novalidate="">
<div class="row g-3">
<div class="col-sm-12">
<input
type="text"
class="form-control"
id="firstName"
placeholder="Search"
value=""
required
/>
<div class="invalid-feedback">
</div>
</div>
<button class="w-100 btn btn-success btn-lg" type="submit">
Submit
</button>
</form>
</div>
</div>
</main>
<div class="album py-5">
<div class="container">
<div class="my-spinner spinner-border" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3 books-container">
</div>
</div>
</div>
<footer class="my-5 pt-5 text-muted text-center text-small">
<p class="mb-1">Build by Cudi</p>
</footer>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
></script>
</body>
</html>