-
The applet tag has been deprecated, so
this page was produced using
HtmlConverter.
The page source now refers to the same applet
but uses the HTML
object
tag;
which contains other tags like param
,
comment
, and embed
.
For reference, the previous applet was:
<APPLET CODEBASE="/CISystem/Classes"
CODE="Clock2.class" WIDTH=170 HEIGHT=150>
</APPLET>
-
Within
object
is a param
tag
which points to the location of the applet.
<param name = "CODEBASE"
value = "/CISystem/Classes">
-
Also within
object
is a param
tag:
<param name = "CODE"
value = "Clock2.class">
The above tag value
points to
- Filename of the applet (case sensitive);
- Entry point within the applet (without ".class");