4 - Propiedades relacionadas a fuentes.
Problema:
Definir para el elemento h1 una fuente de tipo 'new times roman', fuente de 30 pixeles, estilo italic y peso bold.
Para la marca h2 definir una fuente de tipo 'verdana' y de 20 píxeles de alto.
pagina.html
estilos.css
Ejecución de la página
<!DOCTYPE html> <html> <head> <title>Problema</title> <meta charset="UTF-8"> <style> h1 { font-family:times new roman; font-size:30px; font-style:italic; font-weight:bold; } h2 { font-family:verdana; font-size:20px; } </style> </head> <body> <h1>Titulo de nivel 1</h1> <h2>Titulo de nivel 2</h2> </body> </html>
No tiene disponible el navegador la capacidad de iframe
Retornar