Background image custom

i am new and very much just learning but is it possible to set a webpage background to an image off your computer instead of say a color?

yes this is possible. Use the css “background-image” property. Check out this link, it should give you a good idea how to use it.

1 Like

Use background-image: url("link-to-your-image"); Please like if it helped.

like background-image:url(“C:\Users\Central\Downloads”

 background-image: url(“C:\Users\Central\Downloads\imageName.ext”);

or you could use relative paths. like the following:

 background-image: url(“imageName.ext”);

they are called relative paths because they are relative to the current folder you are working in.