Compare commits

..

2 Commits

Author SHA1 Message Date
maximo hidalgo
a86131fa5e version inicial del tp 2026-04-20 21:13:41 -03:00
maximo hidalgo
3a34b26d20 agrego gitignore 2026-04-20 21:12:23 -03:00
4 changed files with 84 additions and 0 deletions

19
.gitignore vendored Normal file
View File

@@ -0,0 +1,19 @@
# Python
__pycache__/
*.pyc
*.pyo
# Entorno virtual de Python
venv/
.venv/
env/
# Variables de entorno y configuración sensible
.env
# Sistemas operativos
.DS_Store # macOS
Thumbs.db # Windows
# Node.js (por si se utiliza npm en algún momento)
node_modules/

BIN
carpincho.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

0
diseño.css Normal file
View File

65
trabajo.html Normal file
View File

@@ -0,0 +1,65 @@
<!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>