how to use applets

  Take a look at the following HTML code-

<applet code="Flow.class" width=120 height=60>
<param name="image1" value="MyPic.gif">
<param name="BackWater" value="lava.gif">
</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 Flow.class.


height and width control the dimensions of the applet window.

  Most applets that you download will have their own special parameters (like image1 and BackWater in this example). Go to the parameters page to find the ones to use with Flow.

Download
Flow Main