diff --git a/imagen.png b/imagen.png
new file mode 100644
index 0000000..54eddb8
Binary files /dev/null and b/imagen.png differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..d518d7e
--- /dev/null
+++ b/index.html
@@ -0,0 +1,112 @@
+
+
+
+
+ Programación I
+
+
+
+
+
+
+
+ Tipo de Formulario
+ Actividad de Programación
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Descripción de los campos
+
+
+ - Nombre: Campo de texto para el nombre
+ - Apellido: Campo de texto para el apellido
+ - Cuotas: Número mayor a cero
+ - Provincia: Selección de provincia
+ - Email: Correo electrónico válido
+
+
+
+
+
+ | Campo |
+ Tipo |
+
+
+ | Nombre |
+ Texto |
+
+
+ | Email |
+ Email |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..fefd60f
--- /dev/null
+++ b/style.css
@@ -0,0 +1,40 @@
+body {
+ background-color: #686567;
+ color: #333333;
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 20px;
+
+}
+form{
+ background-color: rgba(255, 255, 255, 0.8);
+ padding: 20px;
+ border-radius: 10px;
+}
+
+h1, h3{
+ color: #00eeda;
+ text-align: center;
+}
+ul {
+ list-style-type: square;
+ padding-left: 20px;
+}
+table {
+ width: 100%;
+ border-collapse: collapse;
+ margin-top: 20px;
+}
+th, td {
+ border: 1px solid #dddddd;
+ text-align: left;
+ padding: 8px;
+}
+
+.img-formulario {
+ display: block;
+ margin: 20px auto;
+ width: 300px;
+
+}
+