Note: Before you start this tutorial, you must have downloaded and installed the Java SE Development Kit.
Java applets are like Java applications, their creation follows the same three step process of write, compile and run. The difference is, instead of running on your desktop, they run as part of a web page.
The goal in this tutorial is to create a simple Java applet. This can be achieved by following these basic steps:
- Write a simple applet in Java
- Compile the Java source code
- Create a HTML page that references the applet
- Open the HTML page in a browser


