Dynamicdeezign, documentation of html and css
The guide to create your Web site on Internet
 

<applet> : Java applet
The applet tag enable to include java Applet in a html document, Java must be before included by the navigator
Notice: APPLET is deprecated (with all its attributes) in favor of OBJECT

Attribute definitions
-) codebase
This attribute specifies the base URI for the applet. If this attribute is not specified, then it defaults the same base URI as for the current document. Values for this attribute may only refer to subdirectories of the directory containing the current document. Note. While the restriction on subdirectories is a departure from common practice and the HTML 3.2 specification, the HTML Working Group has chosen to leave the restriction in this version of the specification for security reasons.
-) code
This attribute specifies either the name of the class file that contains the applet's compiled applet subclass or the path to get the class, including the class file itself. It is interpreted with respect to the applet's codebase. One of code or object must be present.
-) name

This attribute specifies a name for the applet instance, which makes it possible for applets on the same page to find (and communicate with) each other.
-) archive
This attribute specifies a comma-separated list of URIs for archives containing classes and other resources that will be "preloaded". The classes are loaded using an instance of an AppletClassLoader with the given codebase. Relative URIs for archives are interpreted with respect to the applet's codebase. Preloading resources can significantly improve the performance of applets.
-) object
This attribute names a resource containing a serialized representation of an applet's state. It is interpreted relative to the applet's codebase. The serialized data contains the applet's class name but not the implementation. The class name is used to retrieve the implementation from a class file or archive.
-) width
This attribute specifies the initial width of the applet's display area (excluding any windows or dialogs that the applet creates).
-) height
This attribute specifies the initial height of the applet's display area (excluding any windows or dialogs that the applet creates).
-) id, class : document-wide identifiers
-) title : element title
-) style : inline style information
-) alt : alternate text
-) align, hspace, vspace : visual presentation of objects, images, and applets

Example 1 : deprecated
<applet
    codebase = "http://www.your_website.com.com/path_to_applet"
    code = "the_applet.class"
    archive= "the_applet.jar"
    name = "Nome of the applet"
    width = "500"
    height = "450"
    hspace = "0"
    vspace = "0"
    align = "middle"
>
    <param name = "param0" value = "value_param0">
    <param name = "param1" value = "value_param1">
    <param name = "param2" value = "value_param2">
    <param name = "param3" value = "value_param3">
</applet>


Example 2 : applet with OBJECT tag
<OBJECT
    classid = "clsid:CAFEEFAC-0014-0001-0000-ABCDEFFEDCBA"
    codebase = "http://java.sun.com/products/plugin/autodl/jinstall-1_4_1-windows-i586.cab#Version=1,4,1,0"
    WIDTH = 500 HEIGHT = 450 >
    <PARAM NAME = CODE VALUE = "the_applet.class" >
    <PARAM NAME = codebase VALUE = "http://www.your_website.com.com/path_to_applet">
    <PARAM NAME = ARCHIVE VALUE ="the_applet.jar">
    <PARAM NAME = "type" VALUE = "application/x-java-applet;jpi-version=1.4.1">
    <PARAM NAME = "scriptable" VALUE = "false">
    <PARAM NAME = "param0" value = "value_param0">
    <PARAM NAME = "param1" value = "value_param1">
    <PARAM NAME = "param2" value = "value_param2">
    <PARAM NAME = "param3" value = "value_param3">

    <COMMENT>
    <EMBED
    type = "application/x-java-applet;jpi-version=1.4.1"
    CODE = "the_applet.class"
    codebase = "http://www.your_website.com.com/path_to_applet"
    ARCHIVE ="the_applet.jar"
    param0 value = "value_param0"
    param1 value = "value_param1"
    param2 value = "value_param2"
    param3 value = "value_param3"
    WIDTH = 500
    HEIGHT = 450
    scriptable = false
    pluginspage = "http://java.sun.com/products/plugin/index.html#download">
    <NOEMBED>
    alt="Your browser understands the <APPLET> tag but isn t running the applet, for some reason."
    Your browser is completely ignoring the <APPLET> tag!
    </NOEMBED>
    </EMBED>
    </COMMENT>
</OBJECT>

<!--
    <APPLET CODE = "dessin.Principale.class" WIDTH = 500 HEIGHT = 450>
    alt="Your browser understands the <APPLET> tag but isn t running the applet, for some reason."
    Your browser is completely ignoring the <APPLET> tag!
    </APPLET>
-->






For complete reference see html reference at W3C
EP..2   EP..3   EP..4   EP..5   EP..6   EP..7   EP..8   EP..9   EP..10   EP..11   EP..12   EP..13   EP..14   EP..15  
EP..16   EP..17   EP..18   EP..19   EP..20   EP..21   EP..22   EP..23   EP..24   EP..25   EP..26   EP..27   EP..28   EP..29  
EP..30   EP..31   EP..32   EP..33   EP..34   EP..35   EP..36   EP..37   EP..38   EP..39   EP..40   EP..41   EQ..1   ER..1  
ER..2   ER..3   ER..4   ES..1   ES..2   ES..3   ES..4   ES..5   ET..1   EU..1   EV..1   EW..1   EX..1   EX..2  
EY..1   EZ..1   EZ..2