-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
alecapra96
committed
Jan 20, 2021
1 parent
585be0d
commit 1ca8916
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |