forked from erasersleeve/Multimedia-Search-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 2.58 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BookFlix</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<script
src="https://kit.fontawesome.com/f663e85456.js"
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC&family=Raleway&family=Berkshire+Swash&family=Limelight&family=Open+Sans&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/images/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/images/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/images/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="assets/images/favicon/site.webmanifest" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
</head>
<body>
<div class="header">
<h1 class="title" id="title">BookFlix</h1>
<h5 class="description-title">Discover Your Next Story</h5>
<div class="description-content">
<p>Search for titles. Explore details. Find new favorites.</p>
</div>
<form>
<div class="search-bar">
<input type="text" id="media-search" placeholder="Enter title..." />
<button type="button" class="btn-circle search" id="searchBtn"><i class="fas fa-magnifying-glass"></i></i>
<button type="button" class="btn-circle reset" id="resetBtn"><i class="fas fa-refresh"></i></i>
</button>
</div>
</form>
</div>
<div class="row">
<div class="column">
<h2 class="center-align pages">Pages</h2>
<div id="book-results"></div>
</div>
<div class="column">
<h2 class="center-align previews">Previews</h2>
<div id="movie-results"></div>
</div>
</div>
<script type="module" src="script.js"></script>
</body>
</html>