<html><header></header><body><applet code = "TestApplet.class width = 300 height = 300></applet></body></html>
class TestApplet extends Applet { public void init() { Panel p = new Panel(); p.add(new Button("Button1")); add(p, "South"); }}