<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Example 10-1-A</title> <style type="text/css"> .myArialGroup { font-family: Arial, Helvetica, sans-serif; } .myComicGroup { font-family: "Comic Sans MS", cursive; } .myCourierGroup { font-family: "Courier New", Courier, monospace; } .myTrebuchetGroup { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; } .myTimesNewRomanGroup { font-family: "Times New Roman", Times, serif; } .myVerdanaGroup { font-family: Verdana, Geneva, sans-serif; } </style> </head> <body> <p class="myArialGroup">Arial Group<br /> The quick brown fox jumps over the lazy dog. </p> <p class="myComicGroup">Comic Sans MS Group<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myCourierGroup">Courier Group<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myTrebuchetGroup">Trebuchet MS Group<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myTimesNewRomanGroup">Times New Roman Group<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myVerdanaGroup">Verdana Group<br /> The quick brown fox jumps over the lazy dog.</p> </body> </html>