import java.applet.*; import java.awt.*; public class HelloWorld extends Applet { Label helloLabel = new Label ("That's the stuff"); public void init () { setBackground (Color.yellow); add (helloLabel); } }