-
Notifications
You must be signed in to change notification settings - Fork 0
/
Demo10-2.html
51 lines (48 loc) · 1.5 KB
/
Demo10-2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="estilos.css">
</head>
<body>
<main>
<div id="frmPersona" class="formulario">
<div class="group">
<label>Nombres</label>
<input class="required" type="text" id="txtNombres" maxlength="50" data-tipo="cadena">
<i></i>
</div>
<div class="group">
<label>Apellidos</label>
<input class="" type="text" id="txtApellidos" maxlength="50" data-tipo="cadena">
<i></i>
</div>
<div class="group">
<label>Edad</label>
<input class="required" type="text" id="txtEdad" maxlength="3" data-tipo="numero">
<i></i>
</div>
<br>
<button id="btnGuardar">Guardar</button>
</div>
</div>
<div class="resultados">
<table>
<thead>
<tr>
<th>Nombres</th>
<th>Apellidos</th>
<th>Edad</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</main>
</body>
<script src="constants.js"></script>
<script src="demo102.js"></script>
</html>