import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;


public class  FontEx extends JFrame implements ActionListener {

	JLabel fontName, fontSize,fontStyle;
	JTextField fontTextField, fontSizeTextField;
	JButton plainBtn, boldBtn, italicBtn, boldItalicBtn;

	public FontEx()
	{
		JPanel buttonList = new JPanel();
		buttonList.setLayout(new GridLayout(1,2));
		plainBtn = new JButton ("Plain");
		boldBtn = new JButton ("Bold");
		italicBtn = new JButton ("Italic");
		boldItalicBtn = new JButton ("Bold & Italic");
		buttonList.add(plainBtn);
		buttonList.add(boldBtn);
		buttonList.add(italicBtn);
		buttonList.add(boldItalicBtn);

		Container c = getContentPane();
		c.setLayout(new FlowLayout(FlowLayout.CENTER,50,20));
		JLabel fahLabel = new JLabel ("Fahrenheit");



	}


	public static void main( String [] args)
	{


		temperatureConverter myDemo = new temperatureConverter();
		   myDemo.setTitle("GUI Demo1");
		   myDemo.setSize(250, 300);
		   myDemo.setVisible(true);
		   myDemo.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);


	}

	@Override
	public void actionPerformed(ActionEvent e) {




	}

}

