-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (112 loc) · 4.69 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>moviOn</title>
<link rel="shortcut icon" href="">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- HEADER -->
<header>
<div>
<div>
<h1 id="logo">moviOn</h1>
</div>
<nav>
<a href="index.html">Home</a>
<a href="search.html">Search</a>
<a href="blog.html">Blog</a>
<a href="signin.html">Sign in</a>
<a href="signup.html" class="highlight">Sign up</a>
<a href="ligth.html">🌝</a>
</nav>
</div>
</header>
<!-- MAIN -->
<main>
<form>
<input type="text" placeholder="Title">
<input type="text" placeholder="Celebs">
<input type="text" placeholder="Cinema">
<input type="text" placeholder="Keywords">
<div>
<p>Rating:</p>
<input type="number" placeholder="Minimum">
<input type="number" placeholder="Maximum">
</div>
<div>
<p>Showtime:</p>
<input type="date" value="today">
<input type="time" value="00:00">
</div>
<table>
<thead>
<th>Genres:</th>
</thead>
<tbody>
<tr>
<td><input type="checkbox" name="genres" value="action"> <label>Action</label></td>
<td><input type="checkbox" name="genres" value="adventure"> <label>Adventure</label></td>
<td><input type="checkbox" name="genres" value="animation"> <label>Animation</label></td>
<td><input type="checkbox" name="genres" value="biography"> <label>Biography</label></td>
</tr>
<tr>
<td><input type="checkbox" name="genres" value="comedy"> <label>Comedy</label></td>
<td><input type="checkbox" name="genres" value="crime"> <label>Crime</label></td>
<td><input type="checkbox" name="genres" value="documentary"> <label>Documentary</label></td>
<td><input type="checkbox" name="genres" value="drama"> <label>Drama</label></td>
</tr>
</tbody>
</table>
<table>
<thead>
<th>Companies:</th>
</thead>
<tbody>
<tr>
<td><input type="checkbox" name="companies" value="fox"> <label for="companies-1">20th Century
Fox</label></td>
<td><input type="checkbox" name="companies" value="columbia"> <label
for="companies-2">Sony</label></td>
<td><input type="checkbox" name="companies" value="dreamworks"> <label
for="companies-3">DreamWorks</label></td>
<td><input type="checkbox" name="companies" value="mgm"> <label for="companies-4">MGM</label>
</td>
</tr>
<tr>
<td><input type="checkbox" name="companies" value="paramount"> <label>Paramount</label></td>
<td><input type="checkbox" name="companies" value="universal"> <label>Universal</label></td>
<td><input type="checkbox" name="companies" value="disney"> <label>Walt Disney</label></td>
<td><input type="checkbox" name="companies" value="warner"> <label>Warner Bros.</label></td>
</tr>
</tbody>
</table>
<input type="text" placeholder="Location">
<input type="button" value="Search">
</form>
</main>
<!--SECTION-->
<section>
<div>
<h3>MOST POPULAR MOVIES</h3>
<div>
<a href="" class="left-arrow"><img src="" alt="left-arrow"></a>
<a href="" class="right-arrow"><img src="" alt="right-arrow"></a>
<a href=""><img src="" alt="Image 1"></a>
<a href=""><img src="" alt="Image 2"></a>
<a href=""><img src="" alt="Image 3"></a>
<a href=""><img src="" alt="Image 4"></a>
</div>
</div>
</section>
<!--FOOTER-->
<footer>
<div>
<a href="contacto.html">Contacto</a>
<a href="#">EN/ES</a>
</div>
</footer>
</body>
</html>