import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Image extends JApplet
{
FlowLayout flow = new FlowLayout();
JLabel iSawThat = new JLabel(new ImageIcon("Kerry-Lennon.jpg"));
public void init()
{
Container con = getContentPane();
con.setLayout(flow);
con.add(iSawThat);
}
}