24 - Propiedades relacionadas al fondo (background)(FORMATO RESUMIDO)



Problema:

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>
  <meta charset="UTF-8">
  <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;
}
Ver solución


Retornar