Confeccionar una página que inicialice el fondo de un elemento h1 con una imagen (utilizar la imagen: fondo.jpg)
<!DOCTYPE html> <html> <head> <title>Problema</title> <link rel="StyleSheet" href="estilos.css" type="text/css"> </head> <body> <h1>Titulo de nivel 1</h1> </body> </html>
h1 { background: url(fondo.jpg) repeat; }
Retornar |