-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformulario-tabla.html
More file actions
110 lines (107 loc) · 3.76 KB
/
formulario-tabla.html
File metadata and controls
110 lines (107 loc) · 3.76 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Formulario y Tablas</title>
</head>
<body>
<h1>Formulario y Tablas</h1>
<table border="1">
<tr> <!-- Table Row -->
<th>Lunes</th> <!-- Table Head -->
<th>Martes</th>
<th>Miercoles</th>
<th>Jueves</th>
<th>Viernes</th>
<th>Sabado</th>
<th>Domigo</th>
</tr>
<tr> <!-- Table Row -->
<td>Curso de JS</td> <!-- Table Data -->
<td>Curso de Bootstrap</td>
<td>Curso de Java</td>
<td>Curso de Sprintbooot</td>
<td>Curso de HTML</td>
<td rowspan="2">Ir con mi novia</td>
<td rowspan="4">Ir con mi novia</td>
</tr>
<tr>
<td>Clase de Humanidades</td>
<td>Gym temprano</td>
<td>Clase de Humanidades</td>
<td>Gym temprano</td>
<td>Clase de Humanidades</td>
</tr>
<tr>
<td>Enchiladas</td>
<td>Chilaquiles</td>
<td>Omelett</td>
<td>Huevos Fritos</td>
<td>Cereal</td>
<td rowspan="2">Clases de ingres</td>
</tr>
<tr>
<td>Brazo y espalda</td>
<td>Parte media</td>
<td>Pierna</td>
<td>Brazo y espalda</td>
<td>Parte media</td>
</tr>
</table>
<hr/>
<form method="POST">
<h3>Registrate</h3>
<p>
<label for="nombre">Nombre</label>
<input type="text" name="nombre" required/>
</p>
<p>
<label for="email">Correo Electrónico</label>
<input type="email" name="email" required/>
</p>
<p>
<label for="cumpleanios">Cumpleaños</label>
<input type="date" name="cumpleanios"/>
</p>
<p>
<label for="edad">Edad</label>
<input type="number" name="edad" required/>
</p>
<p>
<label for="altura">Altura</label>
<input type="range" name="altura" min="9" max="100" step="1" />
</p>
<p>
<label for="password">Contraseña</label>
<input type="password" name="password" required/>
</p>
<p>
<select name="sexo" id="">
<option value="hombre">Hombre</option>
<option value="mujer">Mujer</option>
<option value="indistinto">Indistinto</option>
</select>
</p>
<p>
<input type="checkbox"/>
<label for="">Opción 1</label>
</p>
<p>
<input type="radio" name="color" value="rojo"/>
<label for="color">Rojo</label>
<input type="radio" name="color" value="verde"/>
<label for="color">Verde</label>
<input type="radio" name="color" value="Amarillo"/>
<label for="color">Amarillo</label>
<input type="radio" name="color" value="azul"/>
<label for="color">Azul</label>
<input type="radio" name="color" value="naranja"/>
<label for="color">Naranja</label>
</p>
<p>
<textarea name="muchotexto" id="" cols="150" rows="200"></textarea>
</p>
<input type="submit" value="Resgistrar">
</form>
</body>
</html>