WIPull #3

Open
arteche.mateo wants to merge 9 commits from arteche.mateo/clase-8-DOMprkkkk:mateo-arteche-rama into main
Showing only changes of commit 1c781de334 - Show all commits

View File

@@ -6,4 +6,15 @@ console.log(titulo.textContent);
titulo.textContent = "Comidas mas consumidas por argentinos";
}
cambiarH1(); // Ejercicio 1
cambiarH1(); // Ejercicio 1
function claseLi(){
const agregarClase = document.querySelectorAll("li");
for(const lista of agregarClase){
lista.classList.add("item-lista");
}
}
claseLi(); //Ejercicio 2