import java.applet.*; // required to paint on screen import java.awt.*; public class HelloWorld extends Applet { // The method that will be automatically called when the applet is started public void init() { // It is required but does not need anything. } // This method gets called when the applet is terminated // That's when the user goes to another page or exits the browser. public void stop() { // no actions needed here now. } // The standard method that you have to use to paint things on screen // This overrides the empty Applet method, you can't called it "display" for example. public void paint(Graphics g) { g.drawString("Hey hey hey",20,20); g.drawString("Hellooow World",20,40); } }