package s1;

import java.awt.Font;

import javax.swing.JFrame;

public class WindowMain {

	public static void main(String[] args) {

		JFrame frame = new FirstFrame();
		
		frame.setFont(new Font("Dialog", Font.PLAIN, 36));

		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		frame.setSize(640, 480);
		frame.setVisible(true);
	}
}

