import java.applet.*; import java.awt.*; public class simple extends Applet { private String text; public void init() { text = new String("Joe"); } public void paint (Graphics g) { g.setColor(Color.blue); g.setFont(new Font("Arial", Font.BOLD, 16)); g.drawString("HELLO WORLD: " + text, 75, 75); } }