<!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-G</title> <style type="text/css"> .myArial { font-family: Arial; } .myArialBlack { font-family: "Arial Black"; } .myComic { font-family: "Comic Sans MS"; } .myCourierNew { font-family: "Courier New"; } .myGeorgia { font-family: Georgia; } .myImpact { font-family: Impact; } .myTrebuchet { font-family: "Trebuchet MS"; } .myTimesNewRoman { font-family: "Times New Roman"; } .myVerdana { font-family: Verdana; } </style> </head> <body> <p class="myArial">Arial<br /> The quick brown fox jumps over the lazy dog. </p> <p class="myArialBlack">Arial Black<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myComic">Comic Sans MS<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myCourierNew">Courier New<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myGeorgia">Georgia<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myImpact">Impact<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myTrebuchet">Trebuchet MS<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myTimesNewRoman">Times New Roman<br /> The quick brown fox jumps over the lazy dog.</p> <p class="myVerdana">Verdana<br /> The quick brown fox jumps over the lazy dog.</p> </body> </html>