-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
87 lines (81 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
84
85
86
87
<!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>IMBD</title>
<link rel="stylesheet" href="assets/styles/sitewide.css" />
<link rel="stylesheet" href="assets/styles/index.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css"
/>
</head>
<body>
<!--Navigation bar with logo, homepage, staying-in, and going-out links -->
<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 class="hero-div">
<h1 class="welcome-text">It's Movie Night!</h1>
<div class="buttons is-flex is-justify-content-space-around">
<div class="has-text-centered is-3">
<a href="staying-in.html"
><button
class="button is-info is-rounded is-large"
id="staying-in-btn"
>
Staying In? 🏡
</button></a
>
</div>
<div class="has-text-centered is-3">
<a href="going-out.html"
><button
class="button is-info is-rounded is-large"
id="going-out-btn"
>
Going Out? 🍿
</button></a
>
</div>
</div>
</div>
<script src="./assets/js/script.js"></script>
</body>
</html>