<APPLET ...>
<APPLET CODEBASE="...">
CODE = "text string"
CODE
<APPLET CODE="MyApplet.class" WIDTH=100 HEIGHT=100> <PARAM NAME=TEXT VALUE="Hi There"> <P>Hi There<P> </APPLET>
Hi There
If the class file is in a different directory than your HTML file, only give the file name, not the path. Use CODEBASE to give the path.
CODEBASE
<APPLET CODE="../graphics/MyApplet.class" WIDTH=100 HEIGHT=100>
<APPLET CODE="MyApplet.class" CODEBASE="../graphics/" WIDTH=100 HEIGHT=100>