The Bounder.class file is put to the same folder as the HTML file.
The following is designated with HTML file.

Parameter
Default
Meaning
CODE="Bounder.class"Indispensable Name is not changed.
( Possibility that change if source program is changed )
WIDTHIndispensableThe width of the display window is designated.
HEIGHTIndispensableThe height of the display window is designated.
speed1The speed of the letter that moves is designated.
fontDialog The font of the letter is designated.
Although it depends in environment the following is produced designated.

TimesRoman
Dialog
Serif
Sanserif
MonoSpaced
DialogInput
fontsize30The size of the font( Point ) is designated.
fonttypePLAIN The type of the letter is designated.
PLAIN
BOLD
ITALIC
maxText1The number of the text block. ( 1 to any number )
text1Text Erorr Text block contents.( Display contents )
The figure after text gives with the league No. without fail.
randomcolortrue The designated method of the letter is designated.
true: random
( It changes the every time that the letter appears and the color is decided automatically ).
Except for true:The color is designated with each parameter of red, green and blue.
red0The red proportion of the letter is designated. ( 0 to 255 ) Default designated be black.

In the case that randomcolor is except for true is ineffective.
green0The green proportion of the letter is designated. ( 0 to 255 )
blue0The blue proportion of the letter is designated. ( 0 to 255 )
backred255The red proportion of the background is designated. ( 0 to 255 )Default designated be white.
backgreen255The green proportion of the background is designated. ( 0 to 255 )
backblue255The blue proportion of the background is designated. ( 0 to 255 )
start_speed40The initial velocity of the bound is designated.


As for the following designated contents I am using.
Even the thing that can omit is designating as an example.
<APPLET CODE="Bounder.class" WIDTH=400 HEIGHT=150 ALIGN=BOTTOM>
<PARAM NAME="speed" VALUE="3">
<PARAM NAME="fontsize" VALUE="50">
<PARAM NAME="font" VALUE="TimesRoman">
<PARAM NAME="fonttype" VALUE="BOLD>
<PARAM NAME="randomcolor" VALUE="true">
<PARAM NAME="red" VALUE="255">       <- There is no designated meaning because randomcolor is true.
<PARAM NAME="blue" VALUE="0">        <- There is no designated meaning because randomcolor is true.
<PARAM NAME="green" VALUE="0">       <- There is no designated meaning because randomcolor is true.
<PARAM NAME="backred" VALUE="255">
<PARAM NAME="backblue" VALUE="255">
<PARAM NAME="backgreen" VALUE="255">
<PARAM NAME="start_speed" VALUE="45">
<PARAM NAME="maxText" VALUE="7">
<PARAM NAME="text1" VALUE="The">
<PARAM NAME="text2" VALUE="Inoue's">
<PARAM NAME="text3" VALUE="Hobby">
<PARAM NAME="text4" VALUE="Electronics">
<PARAM NAME="text5" VALUE="From">
<PARAM NAME="text6" VALUE="Japan">
<PARAM NAME="text7" VALUE=".">
</APPLET>