-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 2.52 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 2.52 KB
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
<!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>Film Database</title>
<link href="styles/styles.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=montserrat"
rel="stylesheet" />
</head>
<body>
<label for="movie-search">Seach the database </label>
<input type="search" id="movie-search" name="q" placeholder="film title" spellcheck="true" >
<button id="searchButton">Search</button>
<label for="add-movie">Add Film</label>
<button id="openAdd">Add</button> <br>
<label id="searchInstructions" for="movie-search">Film Search is case sensitive capitalize the first letter of each word. Film database initially contains the 2001-2014 works of Wes Anderson.</label>
<h1 class="SearchResults" id="filmTitle">Film Title</h1>
<p class="SearchResults">Plot:</p>
<p class="SearchResults" id="displayPlot"></p>
<p class="SearchResults"> Cast:</p>
<p class="SearchResults" id="displayCast"></p>
<p class="SearchResults">Runtime:</p>
<p class="SearchResults" id="displayRuntime"></p>
<p class="SearchResults">Rating:</p>
<p class="SearchResults" id="displayRating"></p>
<p class="SearchResults" >Release Year:</p>
<p class="SearchResults" id="displayYear"></p>
<label for="Film-Title" class="AddFilm">Film Title</label>
<input type="filmInfo" class="AddFilm" id="SFilmTitle" name="q" placeholder="film title" spellcheck="true" ><br>
<label for="Film-Plot" class="AddFilm">Film Plot</label>
<input type="filmInfo" class="AddFilm" id="SFilmPlot" name="q" placeholder="film plot" spellcheck="true" ><br>
<label for="Film-Cast" class="AddFilm">Film Cast</label>
<input type="filmInfo" class="AddFilm" id="SFilmCast" name="q" placeholder="film cast" spellcheck="true" ><br>
<label for="Film-Runtime" class="AddFilm">Film Runtime</label>
<input type="filmInfo" class="AddFilm" id="SFilmRuntime" name="q" placeholder="film runtime" spellcheck="true" ><br>
<label for="Film-Rating" class="AddFilm">Film Rating</label>
<input type="filmInfo" class="AddFilm" id="SFilmRating" name="q" placeholder="film rating" spellcheck="true" ><br>
<label for="Film-Release" class="AddFilm">Film Release Year</label>
<input type="filmInfo" class="AddFilm" id="SFilmRelease" name="q" placeholder="film release year" spellcheck="true" ><br>
<button class="AddFilm" id="submitButton">Submit</button>
<script src="scripts/main.js"></script>
</body>
</html>