+ 3
Hola buenas noches tardes o mañana ¿alguien me puede explicar como se puede poner un fondo en una pagina web?
2 Réponses
+ 7
Translation :Hi, good evening, or tomorrow. Can someone explain to me how to put a background on a web page?
Ans:
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: url("link goes here");
}
</style>
</head>
<body>
<p> background image demo</p>
</body>
</html>
+ 3
gracias 👍👍