forked from zero-to-mastery/Halloween-Hacktoberfest-Edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
movieSearch.html
62 lines (52 loc) · 2.15 KB
/
movieSearch.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
<!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/books.css" rel="stylesheet">
<link href="./css/movieSearch.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>
<div class="container movies-search-page">
<div class="row">
<div class="col-3"></div>
<div class="col-6">
<div class="input-group mb-3">
<input id="searchMovie" type="text" class="form-control" placeholder="Keyword to look for" aria-label="Movie keyword"
aria-describedby="button-addon2">
<div class="input-group-append">
<button class="btn searchButton" type="button" id="activateSearch">Search for a movie</button>
</div>
</div>
</div>
<div class="col-3"></div>
</div>
<div class="row" id="movies">
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script>
window.jQuery || document.write('<script src="../../assets/js/vendor/jquery-slim.min.js"><\/script>')
</script>
<script src="../../assets/js/vendor/popper.min.js"></script>
<script src="js/movieSearch.js"></script>
<script src="../../dist/js/bootstrap.min.js"></script>
<!-- Just to make our placeholder images work. Don't actually copy the next line! -->
<script src="../../assets/js/vendor/holder.min.js"></script>
<!-- Loads Nav & Footer -->
<script src="./js/headFoot.js"></script>
</body>
</html>