There are only a small number of fonts: "Dialog", "DialogInput",
"SanSerif" (was "Helvetica"),
"Serif" (was "TimesRoman"), "MonoSpaced (was "Courier"), "Symbol"
Font styles are BOLD, ITALIC or PLAIN
Font has one constructor
Font(String name, int style, int pointsize)
A font can be set in a Component by setFont()
Label label = new Label("Hello World");
Font font = new Font("Courier",
Font.ITALIC, 12);
label.setFont(font);