-
Notifications
You must be signed in to change notification settings - Fork 0
/
sprint2Responsive.html
52 lines (51 loc) · 1.79 KB
/
sprint2Responsive.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
<!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>Sprint 2 Responsive</title>
<link rel="stylesheet" href="sprint2Responsive.css" />
</head>
<body>
<main class="container">
<section id="texto">
<div id="titulo">
<h1>Aprende a programar observando a los demás</h1>
</div>
<div id="parrafo">
<h4>
Vea cómo los desarrolladores experimentados resuelven problemas en
tiempo real. Ver tutoriales con scripts es genial, pero entender
cómo piensan los desarrolladores es invaluable.
</h4>
</div>
</section>
<section id="formulario">
<div id="promocion">
<p>
<strong>Pruébelo gratis 7 días </strong>y luego $20 / mes a partir
de entonces.
</p>
</div>
<div id="form">
<form action="">
<input type="text" id="name" placeholder="Nombre" required />
<input type="text" id="lastname" placeholder="Apellido" required />
<input type="email" id="email" placeholder="Dirección de correo electrónico" required/>
<input type="password" id="password" placeholder="Contraseña" required/>
<button type="submit">RECLAMA TU PRUEBA GRATUITA</button>
</form>
<div id="p2">
<p>
Al hacer clic en el botón, usted acepta nuestros
<span id="terminos"> Términos y Servicios.</span>
</p>
</div>
</div>
</section>
</main>
<div class="output"></div>
<script src="sprint2Responsive.js"></script>
</body>
</html>