<HTML> <HEAD> <TITLE>you would put a bookmark Title here</TITLE> </HEAD> <!--you should have only one Body tag, but I have 3 here to show options--> <BODY> <BODY BACKGROUND="myfile.gif" BGCOLOR="BLACK" TEXT="WHITE" LINK="RED" VLINK="BLUE"> <BODY BGCOLOR="#000000" BACKGROUND="m45.jpg" BGPROPERTIES="fixed" TEXT="#FFFFFF" LINK="#6699FF" VLINK="#6699FF"> <!--note BGPROPERTIES="fixed" only works for Internet Explorer--> <CENTER> <!--a line break below--> <BR> <!--paragraph to create a blank line--> <P> <!--example of Horizontal Rule with Percentage Width below--> <HR WIDTH="50%"> <!--example of Horizontal Rule with Pixel Width below--> <HR WIDTH="80"> <!--example of Horizontal Rule with line Size in Pixels below--> <HR SIZE="10"> <!--header style text uses H1 thru H6--> <!--sizes run from H1 as largest to H6 as smallest, with H4 being normal--> <!--you can align LEFT, CENTER, or RIGHT--> <H1 ALIGN="LEFT">Text</H1> <B>This text in Bold</B> <I>This text in Italics</I> <FONT SIZE="n" COLOR="color">Text</FONT> <!--font sizes are 7 as largest down to 1 as smallest with 3 being normal--> <!--links--> <A HREF="page2.html">Go to my next web page</A> <A HREF="http://www.microsoft.com">Go to Microsoft</A> <!--images - set border to zero for none, othewise number of Pixels wide--> <IMG SRC="filename.ext" ALT="alternate text" BORDER="n"> <A HREF="fullsize.jpg"><IMG SRC="thumb.jpg" ALT="Thumb Pic" BORDER="0"></A> <!--link to a specific spot on a page--> <A NAME="whatever"></A> <A HREF="#whatever">Back to whatever</A> <!--Internet Explorer sound loop can be INFINITE, or number, default is 1--> <BGSOUND SRC="filename.ext" LOOP="n"> <!--Netscape sound, also works with Internet Explorer, just a bit wierd--> <EMBED SRC="file.ext" AUTOSTART="TRUE" WIDTH="145" HEIGHT="60" LOOP="FALSE"> </CENTER> </BODY> </HTML>