How do I get background clipart on my website?
I’m on Bravenet building a website. They have background clipart available…..but I can’t figure out how to get it on my pages. Can anyone help?
A couple of ways:
in the body tag, you can can do something like this:
<body background="http://somedomain.com/imagepath.jpg">
or
<body style= "background-image:url(http://somedomain.com/imagepath.jpg);>
or in a stylesheet
body
{
background-image:url(http://somedomain.com/imagepath.jpg);
}
A couple of ways:
in the body tag, you can can do something like this:
<body background="http://somedomain.com/imagepath.jpg">
or
<body style= "background-image:url(http://somedomain.com/imagepath.jpg);>
or in a stylesheet
body
{
background-image:url(http://somedomain.com/imagepath.jpg);
}
References :