// Draw the applet.
for(int f=0; f < families.length; f++) { // for each family
for(int s = 0; s < styles.length; s++) { // for each style
Font font = new Font(families[f],styles[s],18); // create font
g.setFont(font); // set font
String name = families[f] + " " +stylenames[s]; // create name
g.drawString(name, 20, (f*4 + s + 1) * 20); // display name
}
}