-
Notifications
You must be signed in to change notification settings - Fork 2
/
staying-in.html
95 lines (89 loc) · 3.07 KB
/
staying-in.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!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>staying-in</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css"
/>
<link rel="stylesheet" href="assets/styles/staying-in.css" />
<link rel="stylesheet" href="assets/styles/sitewide.css" />
<script
src="https://kit.fontawesome.com/331def02d9.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!--Nav Bar with movie list, home page, and going out link-->
<header>
<nav
class="navbar"
role="navigation"
aria-label="main navigation"
id="nav-bar"
>
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<img
src="assets/images/imbd-logos_transparent.png"
class="imbd-logo"
/>
<img
hidden
src="./assets/images/imbd-small.png"
class="imbd-small"
alt="imbd-logo"
/>
</a>
<a role="button" id="burger" class="navbar-burger">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbar-menu" class="navbar-menu">
<div class="navbar-start has-text-right">
<a href="index.html" class="navbar-item"> Home </a>
<a href="staying-in.html" class="navbar-item"> Staying In </a>
<a href="going-out.html" class="navbar-item"> Going Out </a>
<a href="genre.html" class="navbar-item"> Genres </a>
<a href="favorites.html" class="navbar-item"> Favorites </a>
</div>
</div>
</nav>
</header>
<!-- div container which holds search container and content display container -->
<div class="is-multiline mt-0" id="id-main">
<!-- div container where search takes place -->
<div class="column mx-auto" id="id-div-search">
<!--is-two-fifths mt-6-->
<h3 class="title is-2 text-color">What would you like to watch?</h3>
<form class="is-flex" id="id-search-form">
<input
type="text"
class="input is-info mr-2"
placeholder="Enter your search here"
id="id-search-input"
/>
<button
class="button is-outlined is-info"
type="submit"
id="id-search-btn"
>
Search
</button>
</form>
</div>
<!-- div container where dynamic HTML creation takes place -->
<div
class="column is-full is-flex is-flex-direction-row is-flex-wrap-wrap is-justify-content-space-evenly"
id="id-div-container"
></div>
</div>
<script src="assets/js/staying-in.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</body>
</html>