-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathejercicio1.html
More file actions
28 lines (22 loc) · 850 Bytes
/
ejercicio1.html
File metadata and controls
28 lines (22 loc) · 850 Bytes
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
<!-- Este ejercicio se basó en hacer una tabla con un formulario dentro. También se le aplica algunos atributos como border, align, etc -->
<html>
<body>
<form action="">
<table border="1">
<tr>
<td>Nombre: <input type="text" name="nombre" value="Andres" /></td>
<td>Apellido: <input type="text" name="apellido" value="Bertone" /></td>
</tr>
<tr>
<td colspan="2">Comentario: <textarea name="comentario">Acá va un comentario</textarea></td>
</tr>
<tr>
<td colspan="2" align="center">Email: <input type="email" name="email" value="andresbertone97@gmail.com"/> </td>
</tr>
<tr>
<td colspan="2" align="right"><input type="submit" name="enviarformulario" value="Enviar"></td>
</tr>
</table>
</form>
</body>
</html>