-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (64 loc) · 2.02 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
<!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>Netflix - Iniciar Sesión</title>
<link
rel="stylesheet"
href="https://necolas.github.io/normalize.css/8.0.1/normalize.css"
/>
<link rel="stylesheet" href="css/app.css" />
</head>
<body>
<header class="site-header">
<h1 class="logotipo">Netflix</h1>
</header>
<main class="formulario-login contenedor">
<form action="#">
<legend>Inicia Sesión</legend>
<div class="campo">
<input type="text" id="usuario" />
<label for="usuario">Email o número de teléfono</label>
</div>
<div class="campo">
<input type="password" id="password" />
<label for="password">Contraseña</label>
</div>
<div class="submit">
<input type="submit" value="Iniciar Sesión" />
</div>
<div class="acciones">
<div class="recuerdame">
<input type="checkbox" />
<label>Recuerdame</label>
</div>
<div class="ayuda">
<a href="#">¿Necesitas ayuda?</a>
</div>
</div>
</form>
<div class="contenido-inferior">
<a href="#">Iniciar sesión con Facebook</a>
<p class="nuevo-usuario">
¿Primera vez en Netflix? <span><a href="#">Suscribete ya.</a></span>
</p>
</div>
</main>
<footer class="site-footer">
<div class="contenedor">
<p>¿Preguntas? Llama al 69740042</p>
<nav class="menu-footer">
<a href="#">Términos de las tarjetas de regalo</a>
<a href="#">Términos de uso</a>
<a href="#">Declaración de privacidad</a>
</nav>
<select class="lenguaje">
<option value="eng">English</option>
<option value="esp">Español</option>
</select>
</div>
</footer>
</body>
</html>