3 - Accediendo a un elemento HTML a través del DOM (getElementById)
Problema:
Disponer una etiqueta h1 con un mensaje. Luego dos botones que permitan cambiar el color y el tamaño de la fuente.
pagina.html
estilos.css
funciones.js
Ejecución de la página
Prueba
Este es un título dinámico
#titulo { text-align: center; } #boton1, #boton2 { text-align: center; width: 200px; }
function cambiarColor() { let tit = document.getElementById('titulo') tit.style.color = '#ff0000' } function cambiarTamanoFuente() { let tit = document.getElementById('titulo') tit.style.fontSize = '60px' }
No tiene disponible el navegador la capacidad de iframe
Retornar