Ducks Floating in a Tranquil Lake - Seamlessly Repeating Site Background
A seamlessly repeating background of ducks swimming in a peaceful lake. Dark gray and off-white.
To use it, upload the image onto your site. Then have it display via code.
Example code (this code can go in the stylesheet.css file):
#footer {
background-image: url("images/Ducks Pattern b-w - Payhip - LaurenInes.png");
background-repeat: repeat;
background-size: 500px;
}
Example code (this code can go directly into an HTML page):
<style>
#footer {
background-image: url("images/Ducks Pattern b-w - Payhip - LaurenInes.png");
background-repeat: repeat;
background-size: 500px;
}
</style>
** Edit code as needed. For example, change the "images/" to whatever folder you keep images in, or delete it if keep them in your main directory. Or make the code display the background for the full site page, not just a portion of it.