On the last page we learned how to change the background to a full page image. Now we will fix it so it don't move when the page is scrolled.  

Now we put in a full page background image and "fixed" it so that it don't move when the page is  scrolled  scroll the page to see.

The body tag now looks like this and has change from <body>.

<body bgcolor="#00FFFF" background="Web_White.gif" link="#FF0000" vlink="#0000FF" alink="#00FF00" bgproperties="fixed">

 

To recap The the body tag so far.
The   bgcolor = "#00FFFF" will change the background color to light blue. 
The background = "Web_White.gif" puts this background on the screen.
The link = "#FF0000" makes the links on the page RED the first time.
The vlink = "0000FF makes the links blue if you have been there before.
The alink = "00FF00 makes the active link ( the one you are clicking on) GREEN. And the bgproperties = "fixed"> makes the background stay put as you scroll the page.

With what we have done so fat we can make a nice Web page. But it is all text.

  Next we will start putting images on the screen.

 

Next