From bace37d72cdbf20af915371142ef6d0072cb009a Mon Sep 17 00:00:00 2001 From: Sergio Madera De Marco <37299705@terciariourquiza.edu.ar> Date: Thu, 14 May 2026 22:34:11 -0300 Subject: [PATCH 1/9] agrego estilo --- estilo.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/estilo.css b/estilo.css index fcb26fc..e2df1cb 100644 --- a/estilo.css +++ b/estilo.css @@ -8,6 +8,8 @@ * { box-sizing: border-box; } +.item-lista { + color:red;} body { margin: 0; -- 2.49.1 From ab403921dd2fd345bde75c23bed7d70db9c08d4b Mon Sep 17 00:00:00 2001 From: Sergio Madera De Marco <37299705@terciariourquiza.edu.ar> Date: Fri, 15 May 2026 16:46:04 -0300 Subject: [PATCH 2/9] ejercicio 1: cambio de titulo con querySelector --- ejercicios-clase-8.js | 9 +++++++++ index.html | 1 + 2 files changed, 10 insertions(+) diff --git a/ejercicios-clase-8.js b/ejercicios-clase-8.js index af39c43..d4e6f4b 100644 --- a/ejercicios-clase-8.js +++ b/ejercicios-clase-8.js @@ -1 +1,10 @@ // Vincular este archivo al archivo index.html, y resolver aquí los ejercicios. + +console.log("JS conectado"); + +// 1 +function cambiarTitulo() { + const titulo = document.querySelector("h1"); + + titulo.textContent = "Nuevo título desde JavaScript"; +} \ No newline at end of file diff --git a/index.html b/index.html index 0c393ac..64e23af 100644 --- a/index.html +++ b/index.html @@ -31,5 +31,6 @@
¿Y este párrafo? ¿Será importante?
Este es otro párrafo del montón.
+