-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.59 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>M3 - Metodologías para la organización II</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header class="header">
<img src="assets/img/logo.png" alt="Logo">
<h1>Blog FrontEnd</h1>
</header>
<form class="form">
<h2 style="text-align: center;">Bienvenido</h2>
<p>
<input type="text" class="input" placeholder="Email">
</p>
<p>
<input type="password" class="input" placeholder="Contraseña">
</p>
<p>
<button class="button ok">Iniciar sesión</button>
</p>
<p>
<button class="button google">Iniciar sesión con Google</button>
</p>
<p style="text-align: center;">
¿No tienes cuenta? <b><a href="registro.html">Registrate</a></b>
</p>
</form>
<div class="subscription">
<h2 class="subscription__description">
Mantente actualizado sobre el <br> Desarrollo Frontend
</h2>
<form class="subscription__form">
<input class="input subscription__input" type="text">
<button class="button subscription__button">Suscríbete</button>
</form>
</div>
<footer class="footer">
<div class="footer__description">
<img src="assets/img/logo.png" alt="Logo">
<h1>Blog FrontEnd</h1>
<p>Desafío Latam - 2023</p>
</div>
</footer>
</body>
</html>