-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
67 lines (67 loc) · 2.78 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
<!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" />
<link rel="icon"
type="image/png"
href="assets/img/movies.png">
<title>Quick Movie Lookup</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<section class="header">
<h1>Quick Movie Lookup</h1>
</section>
<section class="searchInputBox">
<div class="row">
<form class="col s12" id="inputForm">
<div class="row">
<div class="input-field col s10">
<i class="material-icons prefix">local_movies</i>
<input id="icon_prefix" type="text" class="validate enteredMovie">
<label for="icon_prefix">Enter Movie Title Here</label>
</div>
<div class="input-group-append">
<a class="waves-effect waves-light btn">Search</a>
</div>
</div>
</form>
</div>
</section>
<section class="searchHistoryBox">
</section>
<section class="pageBox">
<section class="searchBox">
<section class="movieHeaderBox">
<section class="movieTitleBox">
<h3 id="movieTitle"></h3>
<h5 id="movieSynopsis"></h5>
<!-- <h3>Cast</h3> -->
<h5 id="castMember1"></h5>
<h5 id="castMember2"></h5>
<h5 id="castMember3"></h5>
</section>
<section class="moviePosterBox">
<img id="moviePoster" src="./assets/img/genericposter.jpg" alt="Movie Poster"><img>
</section>
</section>
</section>
<section class="trailerBox">
<section>
<h3 id="trailerHeader"><h3>
</section>
<iframe
id="youtubeVideo"
src=""
scrolling='no'
></iframe>
</section>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>