-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.5 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
<!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" />
<title>Book Finder</title>
<meta
name="description"
content="Find your next book to read - Type a subject in the search field and browse a list of books related to it."
/>
<meta
property="og:image"
content="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/030/782/original/Untitled_design.png?1648916570"
/>
<meta
property="og:description"
content="Find your next book to read - Type a subject in the search field and browse a list of books related to it."
/>
<!-- Favicon -->
<link
rel="shortcut icon"
href="./src/img/bookshelf.png"
type="image/x-icon"
/>
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/9bdeaf89e7.js"
crossorigin="anonymous"
></script>
<script defer src="bundle/bundle.43733cf51086d7decebd.js"></script><link href="bundle/../src/css/style.css" rel="stylesheet"></head>
<body>
<h1>Book Finder</h1>
<form>
<label for="searchInput">Type a subject:</label>
<input type="text" id="searchInput" />
<button type="submit" id="searchBtn" title="Search">Search</button>
</form>
<div class="loader"></div>
<button id="scrollTop" class="scroll-top">
<i class="fa-solid fa-angles-up"></i>
</button>
</body>
</html>