how to use applets
Take a look at the following HTML code-
<applet code="BIText.class" width=120 height=60>
<param name="text" value="Dude!">
</applet>
The first thing you need to insert an applet is the applet tag. This lets
the browser know to put an applet on the page.
The attributes for the applet tag are
code, height, and width.
code is the filename of the applet. In the example, the filename is
BIText.class.
height and width set the height and width of an applet.
Most applets that you download will have their own special parameters (like
text in this example). Go to the
parameters page to find the ones to use with BIText.
|