Basic structure of an applet

Well, this is very simple and the basic structure of an applet will be the same for every applet you will program. The major difference between an applet and an application is that there is no public static void main (String[]args) - method in an applet! Instead every applet should implement the following methods:

// import necessary packages
import java.applet.*;
import java.awt.*;

// Inherit the applet class from the class Applet
public class FirstApplet extends Applet
{ }

To insert an applet to a HTML - site you have to add the following lines to your HTML document.

<html>
<body>
<p><applet code ="FirstApplet.class" width=700 height=400>
</applet></p>
</body>
</html>

This is the most important line: <p><applet code ="FirstApplet.class" width=700 height=400> .
  1. applet code ="FirstApplet.class" tells the browser where to find the "extends Applet" - class.
  2. width and height tell the browser how big the applet should be
To learn other html - tags please search for a tutorial in the internet.

Next chapter

Moving a ball