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

Parameter
Default
Meaning
CODE="DigitalClock1.class"Indispensable Name is not changed.
( Possibility that change if source program is changed )
WIDTHIndispensable The width of the display window is designated.
( It adjusts with the width of the image gif or jpg )
HEIGHTIndispensable The height of the display window is designated.
( It adjusts with the height of the image gif or jpg )
imageblack The image file that uses as the background is designated.
In the case that the image file is in same folder that is included HTML file the file name is designated directly. In the case that the image file is in the folder of a subordinate furthermore relativity is designated.
Relativity designated example) "picture/pic6_71.jpg"
As for the kind of the file that is able to handle as the image, there is the following thing.
gif form
jpg form
xbm form
ap_fontsize10The size of AM and PM display letter is designated in point.
h_fontsize20The size of Hour display letter is designated in point.
m_fontsize20The size of Minute display letter is designated in point.
s_fontsize20The size of Second display letter is designated in point.
dot_fontsize40The size of dot display letter is designated in point.
dotux40The position of the horizontal axis( X coordinate ) of upper dot is designated with pixel.
dotuy5The position of the vertical axis( Y coordinate ) of upper dot is designated with pixel.
dotdx40The position of the horizontal axis( X coordinate ) of lower dot is designated with pixel.
dotdy15The position of the vertical axis( Y coordinate ) of lower dot is designated with pixel.
amx0The position of the horizontal axis( X coordinate ) of AM is designated with pixel.
amy10The position of the vertical axis( Y coordinate ) of AM is designated with pixel.
pmx0The position of the horizontal axis( X coordinate ) of PM is designated with pixel.
pmy20The position of the vertical axis( Y coordinate ) of PM is designated with pixel.
s01x90 The position of the horizontal axis( X coordinate ) of 1 place of the second is designated with pixel.
( Standard point be the left end of the image )
s01y20 The position of the vertical axis( Y coordinate ) of 1 place of the second is designated with pixel.
( Standard point be the left end of the image )
When '0' is designated the letter becomes outside an image area and be not displayed.
s10x80The position of the horizontal axis( X coordinate ) of 10 places of the second is designated with pixel.
s10y20The position of the vertical axis( Y coordinate ) of 10 places of the second is designated with pixel.
m01x60The position of the horizontal axis( X coordinate ) of 1 place of the minute is designated with pixel.
m01y20The position of the vertical axis( Y coordinate ) of 1 place of the minute is designated with pixel.
m10x50The position of the horizontal axis( X coordinate ) of 10 places of the minute is designated with pixel.
m10y20The position of the vertical axis( Y coordinate ) of 10 places of the minute is designated with pixel.
h01x30The position of the horizontal axis( X coordinate ) of 1 place of the hour is designated with pixel.
h01y20The position of the vertical axis( Y coordinate ) of 1 place of the hour is designated with pixel.
h10x20 The position of the horizontal axis( X coordinate ) of 10 places of the hour is designated with pixel.
Ten places of hour are displayed only in 10 o'clock, 11 o'clock. Blank letter is displayed except for it.( It is not seen )
That case, it changes and adjusts the clock of PC.
h10y20The position of the vertical axis( Y coordinate ) of 10 places of the hour is designated with pixel.


As for the following designated contents I am using.
Even the thing that can omit is designating as an example.
<APPLET CODE="DigitalClock1.class" WIDTH=350 HEIGHT=229 ALIGN=BOTTOM>
<PARAM NAME="image" VALUE="picture/pic6_71.jpg">
<PARAM NAME="ap_fontsize" VALUE="20">
<PARAM NAME="h_fontsize" VALUE="60">
<PARAM NAME="m_fontsize" VALUE="60">
<PARAM NAME="s_fontsize" VALUE="35">
<PARAM NAME="dot_fontsize" VALUE="70">
<PARAM NAME="dotux" VALUE="160">
<PARAM NAME="dotuy" VALUE="177">
<PARAM NAME="dotdx" VALUE="160">
<PARAM NAME="dotdy" VALUE="199">
<PARAM NAME="amx" VALUE="28">
<PARAM NAME="amy" VALUE="175">
<PARAM NAME="pmx" VALUE="28">
<PARAM NAME="pmy" VALUE="200">
<PARAM NAME="s01x" VALUE="300">
<PARAM NAME="s01y" VALUE="203">
<PARAM NAME="s10x" VALUE="275">
<PARAM NAME="s10y" VALUE="203">
<PARAM NAME="m01x" VALUE="225">
<PARAM NAME="m01y" VALUE="205">
<PARAM NAME="m10x" VALUE="185">
<PARAM NAME="m10y" VALUE="205">
<PARAM NAME="h01x" VALUE="120">
<PARAM NAME="h01y" VALUE="205">
<PARAM NAME="h10x" VALUE="80">
<PARAM NAME="h10y" VALUE="205">
</APPLET>