generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.html
More file actions
50 lines (46 loc) · 1.93 KB
/
library.html
File metadata and controls
50 lines (46 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Website Title -->
<title>ToReadList</title>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- JQuery UI -->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<!-- CSS Styling -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
type="text/css" />
<!-- Google Fonts API -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
type="text/css" />
</head>
<body>
<section id="book-library">
<div class="container">
<div id="book-title" class="text-center mt-5">Book Finder</div>
<div class="row">
<div id="input" class="input-group mx-auto col-lg-6 col-m-8 col-sm-12">
<input id="search-box" type="text" class="form-control" placeholder="Search Books...">
<button id="search-button" class="btn btn-primary" onclick="">Search</button>
</div>
</div>
</div>
<div class="book-list">
<h2 class="text-center results-styling">Search Results</h2>
<div id="list-output">
<div class="row">
</div>
</div>
</div>
</section>
<!-- JavaScript -->
<script type="text/javascript" src="assets/js/library.js"></script>
</body>
</html>