Q:

JLabel font

label = new JLabel("A label");
label.setFont(new Font("Serif", Font.PLAIN, 14));
1
import java.awt.Font;
import javax.swing.*;
public class SwingDemo {
   public static void main(String args[]) {
      JFrame frame = new JFrame("Label Example");
      JLabel label;
      label = new JLabel("First Label");
      label.setBounds(50, 50, 100, 30);
      label.setFont(new Font("Verdana", Font.PLAIN, 18));
      frame.add(label);
      frame.setSize(300,300);
      frame.setLayout(null);
      frame.setVisible(true);
   }
}
0

New to Communities?

Join the community