0
How can I put an image as a watermark on my webpage
web development
2 odpowiedzi
0
Hey! First way to do if if your image covers the entite screen, second if it is not
body {
background-image:url(link or way to the image if it is on your pc);
background-size: cover; /*resize the background image to cover the entire container*/
background-repart:repeat; /*it will insert as many images as it is possible on the screen in its natureal size*/
}