-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 1.6 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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=GFS+Didot">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200">
<link rel="stylesheet" href="grupoFamiliar.css">
<title>Grupo Familiar</title>
</head>
<body>
<div class="container">
<header>
<h1 id="titulo">Ingrese la cantidad de integrantes de su familia</h1>
</header>
<div class="content">
<main>
<div id="first-part">
<form>
<input type="number" id="numberFamily" />
<input type="submit" value="Siguiente" id="buttonNext" class="button"/>
</form>
</div>
<div id="sec-and-third">
<div id="second-part"></div>
<div id="third-part"></div>
</div>
<div id="four-part"></div>
<div id="five-part"></div>
<div id="six-part"><input value="LIMPIAR" id="limpiar" /></div>
</main>
</div>
<footer>Proyecto para /r argentina</footer>
</div>
<script type="text/javascript" src="grupoFamiliar.js"></script>
</body>
</html>