<HTML><HEAD>
<TITLE>your title goes
here</TITLE>
<!--This is where you will change the border
colors and border styles, scrollbar colors and font style and
color. There are several border styles that you may choose
from. They are: ridge, inset, outset, solid, groove,
double, dashed, and dotted-->
<STYLE>
BODY {
BORDER-RIGHT:
#89471F 7px inset;
BORDER-TOP: #89471F 7px inset;
SCROLLBAR-FACE-COLOR:
#89471F;
SCROLLBAR-HIGHLIGHT-COLOR:
#ecc89b;
BORDER-LEFT: #89471F 7px inset;
SCROLLBAR-SHADOW-COLOR:
#000000;
SCROLLBAR-3DLIGHT-COLOR:
#ecc89b;
SCROLLBAR-ARROW-COLOR:
#ecc89b;
SCROLLBAR-TRACK-COLOR:
#c49466;
BORDER-BOTTOM: #89471F 7px inset;
SCROLLBAR-DARKSHADOW-COLOR:
#000000;
SCROLLBAR-BASE-COLOR:
#89471F;
MARGIN-TOP: 50px; MARGIN-BOTTOM: 50px
}
.maintext
{
BORDER-RIGHT: #89471F 3px
ridge;
BORDER-TOP: #89471F 3px ridge;
BORDER-LEFT: #89471F 3px ridge;
BORDER-BOTTOM: #89471F 3px ridge;
FONT-FAMILY: Verdana ;
FONT-SIZE: 14pt;
COLOR: #c49466;
}
.main {
BORDER-RIGHT: #89471F 3px ridge;
BORDER-TOP: #89471F 3px ridge;
BORDER-LEFT: #89471F 3px ridge;
BORDER-BOTTOM: #89471F 3px ridge
}
</STYLE>
</HEAD>
<!--Your
background file goes here-->
<BODY bgColor=#c49466
background="applets/your background
file.jpg">
<!--This
is your music file - be sure to use the correct extension for
midi, wave, etc.-->
<BGSOUND balance=0
src="music/your music file.mid"
volume=0
loop=infinite>
<!--This
is where your Applet code begins. When changing names of
files, be careful to use case sensitive file names and spaces. I
would rename it!...LOL...For Example: Deer_Lake.jpg.
Remember to use the formula to find the height for the
applet. The formula=image height x 2 - (10 or 20px) =
applet height -->
<TABLE class=main
width=360 height=468 bgcolor=#367580
align=center cellpadding=0
cellspacing=0>
<TBODY><TR><TD>
<!--Applet
code starts here -->
<CENTER><APPLET height=390 width=360
code=lake.class><PARAM NAME="image" VALUE="applets/image name.jpg">
</APPLET></CENTER>
<!--Applet
code ends here-->
</TD></TR></TBODY></TABLE><P>
<!--Text
box begins here-->
<CENTER>
<DIV
class=maintxt style="WIDTH: 500px; HEIGHT: 200px;
BACKGROUND-COLOR: #367580"
align=center><BR>TEXT GOES
HERE. . .<BR>Double Click to set
text.</DIV>
</CENTER>
<!--Text
box ends here-->
<!--Next is the script. Remember
to change your ticker message.
Otherwise, there is no need to change anything
else.-->
<!--To
make the background change direction, use a (-) or (+) sign
before the number...x=x-1 and y=y+1-->
<SCRIPT
language=VBScript>
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
' This Script
was written on 08-31-02 by
KareBear
~
' Please do not remove these credits from the
script ~
' Questions or
Comments? karebear56@adelphia.net
~
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
x=0
y=0
Sub Window_OnLoad()
window.status=" your ticker message goes here "
SetInterval "scrollback", 64
End Sub
sub
scrollback
x=x-1
y=y-1
document.body.style.backgroundPosition=x&"
"&y
End Sub
</SCRIPT>
</BODY></HTML>