-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (71 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MoviesDB</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./index.css" />
</head>
<body class="d-flex bg-dark">
<nav
class="navbar navbar-expand-lg navigation position-absolute container-fluid p-2 ps-4 pe-3 z-1 bg-dark"
>
<a class="navbar-brand text-info" href="#">MoviesDB</a>
<div
class="navbar-collapse collapse justify-content-end"
id="navbar-content"
>
<div
class="form-group flex-grow-1 d-flex justify-content-end mt-2 mb-2 me-0 me-lg-3"
>
<input
type="text"
id="search-input"
class="form-control shadow-none"
placeholder="Search..."
/>
</div>
<div class="dropdown">
<button
id="category-btn"
class="btn btn-info dropdown-toggle d-flex justify-content-between align-items-center"
type="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
All
</button>
<ul id="category-select" class="dropdown-menu w-100">
<li class="dropdown-item">All</li>
</ul>
</div>
</div>
</nav>
<main class="container position-relative">
<div
id="loader"
class="position-absolute top-0 bottom-0 w-100 align-items-center justify-content-center"
>
<div class="spinner-border text-info" role="status"></div>
</div>
<div id="movie-cards" class="row"></div>
</main>
<script type="text/javascript" src="./config.js"></script>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>