forked from astrobeef/ANS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (95 loc) · 4.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ANS</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!--css-->
<link rel="stylesheet" href="assets/css/style.css">
<!--font-->
<link href="https://fonts.googleapis.com/css?family=Staatliches&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="index.html"><img class="logo" src="assets/img/webname.png"></a>
</header>
<!--main container-->
<div class="container">
<!--first row-->
<div class="row">
<div class="col s12">
</div>
</div>
<!--content row-->
<div class="row" id="row2">
<div class="colS7" id="column">
<h4 class="z-depth-4">Search For Actors</h4>
<!--search-->
<form id="search">
<div class="input-field col s12">
<input id="search-bar" placeholder="Search For Actor..." style="color: ghostwhite;"></input>
<button class="waves-effect waves-light btn" id="submit-btn">Search</button>
</div>
</form>
</div>
<!--instructions-->
<div class="colS5" id="column">
<h4 id="instruction-header" class="z-depth-5">Instructions</h4>
<li class="collection-item">Think of your favorite actor</li>
<li class="collection-item">Type their name in the search bar</li>
<li class="collection-item">The results will show below</li>
<li class="collection-item">All movies listed are now streaming on Netflix</li>
<li class="collection-item">Click on the movie card to get detailed info</li>
<li class="collection-item">Enjoy!</li>
</div>
</div>
<!--posters row-->
<div class="row">
<h4 class="z-depth-5" id="head2"> <span id="searchname"></span>Netflix Movies . . . </h4>
<div id="posters-row" class="responsive-img">
</div>
<!--modal structure-->
<div id="modal" class="modal fade" role="dialog" aria-labelledby="orderModalLabel">
<span id="modalDetails" class="modal-body">
<div id="row">
<span class="col s12" id="modalheader">Title: <span id="display-title" class="display"></span>
</span>
</div>
<div id="row">
<div class="colS9">
<img id="display-image" class="miniImg"></img>
<p>
<span id="modalheaders">Plot: </span><span id="display-plot" class="display"></span>
</p>
<p>
<span id="modalheaders">Rating: </span><span id="display-rating" class="display"></span>
</p>
<p>
<span id="modalheaders">Release: </span><span id="display-release"
class="display"></span>
</p>
<p>
<span id="modalheaders">Runtime: </span><span id="display-runtime"
class="display"></span>
</p>
</div>
</div>
</span>
</div>
</div>
</div>
</div>
<!--jQuery-->
<script src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<!--js script-->
<script src="assets/js/cardDisplayScript.js"></script>
<script src="assets/js/script.js"></script>
<script src="assets/js/fade-in.js"></script>
</body>
</html>