April 05
Prof. Ismael H. F. Santos -  ismael@tecgraf.puc-rio.br                                                          2
JLabel
nString labelText =
n  "<html><FONT COLOR=WHITE>WHITE</FONT> and " +
n  "<FONT COLOR=GRAY>GRAY</FONT> Text</html>";
nJLabel coloredLabel =
n  new JLabel(labelText, JLabel.CENTER);
n...
nlabelText =
n  "<html><B>Bold</B> and <I>Italic</I> Text</html>";
nJLabel boldLabel =
n  new JLabel(labelText, JLabel.CENTER);
nlabelText =
n  "<html>The Applied Physics Laboratory is..." +
n  "of the Johns Hopkins University." +
n  "<P>" + ... "...</html>";