3 - Definición de estilos a nivel de página.
Problema:
Mostrar dos títulos con texto de color rojo sobre fondo amarillo.
pagina.html
estilos.css
Ejecución de la página
<!DOCTYPE html> <html> <head> <title>Problema</title> <meta charset="UTF-8"> <style> h1 {color:#ff0000;background-color:#ffff00} </style> </head> <body> <h1>Primer título</h1> <h1>Segundo título</h1> </body> </html>
No tiene disponible el navegador la capacidad de iframe
Retornar