import javax.swing.*; public class ap extends JApplet { JLabel cimke; public ap() { setLayout(null); cimke = new JLabel("Első applet"); cimke.setBounds(100,100,300,30); add(cimke); } }