
This java code is for creating Lable on JFrame.
import java.awt.*;
public class EmailLabel extends java.applet.Applet {
Label eMailLabel = new Label("E-mail address: ");
public void init() {
//Add the label to the screen
add(eMailLabel);
}...