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);
}

One Response to “How do I get background clipart on my website?”

  1. The1andOnlyMule on September 8th, 2009 at 5:08 am

    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 :

Leave a Reply