-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
182 lines (167 loc) · 5.25 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!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>Mix It Up Movie Night</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap"
rel="stylesheet"
/>
<!-- Bulma -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"
/>
<!-- Reset -->
<link rel="stylesheet" href="assets/css/reset.css" />
<!-- CSS -->
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<header>
<h1>Mix It Up Movie Night</h1>
</header>
<main>
<!-- Welcome Banner -->
<div class="transition-el is-active">
<h1>Let's plan your next movie night</h1>
</div>
<!-- INITIAL SCREEN UPPON LOAD -->
<!-- Thinking we should do it on JS -->
<!-- KHALED'S BUTTON CODE -->
<button
class="toggle"
aria-label="toggle"
id="playAudio1"
onclick= "playAudio1()"
>
Play Audio 1
</button>
<button
class="toggle"
aria-label="toggle"
id="playAudio2"
onclick="playAudio2()"
>
Play Audio 2
</button>
<button
class="toggle"
aria-label="toggle"
id="playAudio3"
onclick= "playAudio3()"
>
Play Audio 3
</button>
<!-- HERO -->
<section class="hero is-large">
<div id="hero1">
<div class="movieDiv">
<h2 class="movieDivTitle"></h2>
<img src="" alt="" class="movieDivImg">
<p class="movieDivDescription"></p>
</div>
<div class="drinkDiv">
<h2 class="drinkDivTitle"></h2>
<img src="" alt="" class="drinkDivImg">
</div>
</div>
<button class="saveForLater">
<p>Save Your Pairing</p>
</button>
</section>
<!-- TILES -->
<div>
<h2>Movie Genres</h2>
</div>
<!-- First Row -->
<div class="tile tile-box is-ancestor">
<!-- R1 C1 -->
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">Action / Adventure</p>
<p class="subtitle">Boom! Bam! Pow!</p>
</article>
</div>
<!-- R1C2 -->
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">Animation</p>
<p class="subtitle">Moving pictures are all the rage</p>
</article>
</div>
<!-- R1C3 -->
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">Comedy</p>
<p class="subtitle">Laugh it up</p>
</article>
</div>
<!-- R1C4 -->
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">Horror / Mystery</p>
<p class="subtitle">The scenes are fake but the fear is real</p>
</article>
</div>
<!-- R1C5 -->
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">Fantasy / SciFi</p>
<p class="subtitle">The past, present, and future... But different</p>
</article>
</div>
<!-- R1C6 -->
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">Drama</p>
<p class="subtitle">It's always better to watch someone else's drama</p>
</article>
</div>
<!-- R1C7 -->
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">Sports</p>
<p class="subtitle">Get your head in the game</p>
</article>
</div>
</div>
<!-- Second Row -->
<div>
<h2>Drink Choices</h2>
</div>
<div class="tile tile-box is-ancestor">
<!-- R2 C1 -->
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">Non Alcoholic Drinks</p>
<p class="subtitle">The kind of drinks you would order at a bar</p>
</article>
</div>
<!-- R2 C2 -->
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">Ordinary Drinks</p>
<p class="subtitle">No need to be fancy when the classics work just fine</p>
</article>
</div>
<!-- R2C3 -->
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">Fancy Cocktail</p>
<p class="subtitle">No alcohol doesn't mean no fun</p>
</article>
</div>
</div>
</main>
<!-- script.js -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="assets/js/scripts.js"></script>
<script src="assets/js/mp3.js"></script>
</body>
</html>