-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (53 loc) · 2.89 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
<!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="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" integrity="sha384-vSIIfh2YWi9wW0r9iZe7RJPrKwp6bG+s9QZMoITbCckVJqGCCRhc+ccxNcdpHuYu" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<div id="wrapper">
<div id="search-box">
<div class="input-search">
<input type="text" placeholder="Search..." name="search" id="search">
<i class="fas fa-search"></i>
</div>
<div id="lista" class="none"></div>
</div>
<aside>
<label for="film">Enter a movie name: </label>
<input type="text" id="title-film" name="title-film" class="film" required>
<label for="img-film">Film image: </label>
<input type="text" id="img-film" name="img-film" class="film" required >
<label for="actor">Choose an actor in the film: </label>
<select name="actor" id="actor" class="film" required>
<option value="Al Pacino">Al Pacino</option>
<option value="Justin Timberlake">Justin Timberlake</option>
<option value="Gerard Butler">Gerard Butler</option>
<option value="Leonardo DiCaprio">Leonardo DiCaprio</option>
<option value="Orlando Bloom">Orlando Bloom</option>
<option value="Bred Pitt">Bred Pitt</option>
<option value="Christian Bale">Christian Bale<option>
<option value="Morgan Freeman">Morgan Freeman</option>
<option value="Matthew McConaughey">Matthew McConaughey</option>
<option value="Julia Roberts">Julia Roberts</option>
<option value="Julia Roberts">Julia Roberts</option>
<option value="Denzel Washington">Denzel Washington</option>
</select>
<label for="description">Film description: </label>
<textarea name="description" id="description" class="film" cols="30" rows="10" required></textarea>
<p id="error" class="none"></p>
<button onclick="saveMovie()" id="save">Save</button>
<button type="submit" id="clear" onclick="clearMovie()">Clear</button>
</aside>
<main id="main">
</main>
</div>
<script src="script.js"></script>
</body>
</html>