forked from zero-to-mastery/Halloween-Hacktoberfest-Edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
movies.html
63 lines (54 loc) · 2.02 KB
/
movies.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
<!doctype html>
<html lang="en">
<head id="head">
<!-- Head information is dynamically loaded -->
<!-- If you need to include a different stylesheet do so below -->
<script src="./js/cssLoad.js"></script> <!-- Dynamically Imports css -->
<link href="./css/movies.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./css/fog.css" />
</head>
<body>
<div id="myNav">
<!-- NavBar is dynamically loaded -->
<!-- If you need to include links check out ./js/headFoot.js -->
</div>
<div id='fog-roll'>
<img src="https://media.giphy.com/media/xEjTM5COAKyNa/giphy-downsized.gif"/>
</div>
<main role="main" class="top-margin">
<hr />
<div class="row">
<div class="container">
<!-- Random movie shuffle container -->
<div class="col">
<div class="randMovieDiv">
<h2 id="questionMovie">Which Halloween movie should you see tonight?</h2>
<div id="randomMovie"></div>
<div class="loader" id="loadCircle"></div>
<div id="imagePumpkin" style="display: none;">
<img src="https://i.pinimg.com/originals/77/d9/4d/77d94d850efa36d3c9d10e0543b33fc6.png" height="50" width="50" />
</div>
</div>
</div>
<!-- Halloween movie card list -->
<div class="col-12">
<h1 id="movieTitle">Halloween Movies</h1>
<div class="card-columns" id="movieCards"></div>
</div>
</div>
</div>
</main>
<div id="myFoot">
<!-- Footer is dynamically loaded -->
<!-- If you need to include links check out ./js/headFoot.js -->
</div>
<!-- Global script files are imported from ./js/headFoot.js -->
<!-- Add page specific link below this line -->
<!-- These two are require for the slider, the dont seem to work in the headFoot.jsinclude -->
<div id="endScripts"></div>
<!-- Loads Nav & Footer - IMPORTANT -->
<script src="./js/headFoot.js"></script>
<!-- Load movie array -->
<script src="./js/movieList.js"></script>
</body>
</html>