feat/excersices #6

Open
saucedo.facundo wants to merge 8 commits from saucedo.facundo/clase-8-DOM:feat/excersices into main
2 changed files with 8 additions and 0 deletions
Showing only changes of commit ad14f63517 - Show all commits

View File

@@ -1 +1,8 @@
// Vincular este archivo al archivo index.html, y resolver aquí los ejercicios.
// Ejercicio 1
const changeTittle = (a) => {
const tittle = document.querySelector('h1');
tittle.textContent = a;
}

View File

@@ -32,4 +32,5 @@
<p>Este es otro párrafo del montón.</p>
</div>
</body>
<script src="ejercicios-clase-8.js" ></script>
</html>