generated from marquez.juan/Ejercicio-inicial--git-y-HTML
Compare commits
2 Commits
f55c4e226e
...
a86131fa5e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a86131fa5e | ||
|
|
3a34b26d20 |
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal 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
BIN
carpincho.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.8 MiB |
0
diseño.css
Normal file
0
diseño.css
Normal file
65
trabajo.html
Normal file
65
trabajo.html
Normal 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>
|
||||
Reference in New Issue
Block a user