Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.awt.Font;

import javax.swing.JLabel;
import javax.swing.JOptionPane;

public class Main {
    public static void main(String[] args) {

        JLabel label = new JLabel("Full Name :", JLabel.LEFT);

        label.setFont(new Font("Georgia", Font.PLAIN, 14));

        JOptionPane.showMessageDialog(null, label);

    }
}