generated from marquez.juan/Ejercicio-inicial--git-y-HTML
65 lines
2.5 KiB
HTML
65 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Trabajo diagnostico 1</title><br>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
|
|
</head>
|
|
</html>
|
|
<body>
|
|
<h1 align="center">Formulario</h1><!--comienzo de formulario-->
|
|
<form>
|
|
<td><center><img src="carpincho.png" height="250" width="350"></center></td>
|
|
<table align="center" width="400" >
|
|
<tr>
|
|
<td>Nombre</td>
|
|
<td><input type="text" name="Nombre"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Apellido</td>
|
|
<td><input type="text name="apellido"></td>
|
|
</tr>
|
|
<tr >
|
|
<td ><input type="radio" name="10">Hombre</td>
|
|
<td ><input type="radio" name="10" id="5">Mujer</td>
|
|
<td ><input type="radio" name="10">Otros</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Correo</td>
|
|
<td><input type="email" name="correo" placeholder="ejemplo@gmail.com"</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Cantidad de cuotas</td>
|
|
<td><input type="number" name=cuotas min="1" </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3">
|
|
Seleccione su provincia=
|
|
<select name="sltclima" id="sltclima">
|
|
<option>Santa Fe (“s”)</option>
|
|
<option>Entre Ríos (“e”)</option>
|
|
<option>Córdoba(“c”)</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3">
|
|
Estudia Actualmente
|
|
<input type="checkbox" id="estudiante">Si
|
|
<input type="checkbox" id="estudiante">No
|
|
</td>
|
|
</tr>
|
|
<tr width="400">
|
|
<td colspan="3">texto
|
|
<textarea nombre="texto cols=100 role=80"></textarea>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<input type="submit" value="click aquì para confirma los datos ingresados" name="bntConfirma"><!--actua como el formulario-->
|
|
<input type="reset" name="btnreset" value="limpie todo lo ingresado">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
</body> |