The Body menu is located in the Insert menu, under
Document Structure Tags .
Here you will see boxes for Background , Background Color , Text Color , Link Color , Visited Link Color , and Active Link Color .
The Background box will allow the user to add their favorite
picture or texture as the background of the document. For this to work,
you input the URL of the picture that you wish to use. For this example,
use the picture url gfx/54.jpg .
This tells the code to go the the site http://www.cs.mun.ca and look for
the directory of jbishop/multi/gfx/ and in this directory, the picuture
54.jpg is found. Here is the example:
<HTML>
<HEAD>
<TITLE> Background Texture Example
</TITLE>
</HEAD>
< BODY BACKGROUND="gfx/54.jpg">
</BODY>
</HTML>
The Background Color ( <BGCOLOR=> ) , Text Color
( <TEXT> ) , Link Color ( <LINK> ) ,
Visited Link Color ( <VLINK> ) , and Active Link Color
( <ALINK> ) allow the
user to change their colors from the default settings. If you click on
the Color button for any one of these, the Color menu
should appear.
From this menu, you can click on any color that you want to use, and its
associated code will be put into the document for you. In this example,
the background is going to be white, and the text color is going to be red.
Here is the example:
<HTML>
<HEAD>
<TITLE> A Change of Color Example
</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="FF0000">
The background should now be white and the text should now be red.
</BODY>
</HTML>
HERE
is how the associated document would look.