"Hello World" Java Applet

This page contains a simple Java Applet that should display "Hello world" in a small rectangle.

If you have any insights, workarounds or comments about this test page please contact Mickey Segal.  A listing of  many Java resources is at this link.

Source code:  

import java.applet.*;
import java.awt.*;

public class Hello extends Applet {

public void init() 
{
    setBackground(new Color(225,225, 255));
}

public void paint(Graphics g)
{
    g.drawString("Hello world", 25 , 25);
}
}