ejercicios DOM #10

Open
scarano.luca wants to merge 8 commits from scarano.luca/clase-8-DOM:ejercicios into main
2 changed files with 6 additions and 0 deletions
Showing only changes of commit f91489c01d - Show all commits

5
ejercicios.js Normal file
View File

@@ -0,0 +1,5 @@
// Vincular este archivo al archivo index.html, y resolver aquí los ejercicios.
//ejercicio 1
function titulo(){
document.querySelector("h1").textContent = "Gastronomia Argentina";
}

View File

@@ -31,5 +31,6 @@
<p>¿Y este párrafo? ¿Será importante?</p>
<p>Este es otro párrafo del montón.</p>
</div>
<script src="ejercicios.js" ></script>
</body>
</html>