<!DOCTYPE html>
<html>

<head>
  <title>Font test</title>
  <link rel="stylesheet" type="text/css" href="1font-family.css">
</head>

<body>
<h1>font-family Property</h1>
<h4>If first font is not available, use second, etc.</h4>
<hr>
<div class="arial">
    Arial The quick brown fox jumped over the lazy dog.<br>
    <span class="bold">Arial The quick brown fox jumped over the lazy dog.</span><br>
    <span class="italic">Arial The quick brown fox jumped over the lazy dog.</span><br>
</div>
<div class="helvetica">
    Helvetica The quick brown fox jumped over the lazy dog.<br>
    <span class="bold">Helvetica The quick brown fox jumped over the lazy dog.</span><br>
    <span class="italic">Helvetica The quick brown fox jumped over the lazy dog.</span><br>
</div>
<div class="TimesNewRoman">
    Times New Roman The quick brown fox jumped over the lazy dog.<br>
    <span class="bold">Times New Roman The quick brown fox jumped over the lazy dog.</span><br>
    <span class="italic">Times New Roman The quick brown fox jumped over the lazy dog.</span><br>
</div>
<div class="MrsEaves">
    Mrs Eaves The quick brown fox jumped over the lazy dog.<br>
    <span class="bold">Mrs Eaves Bold The quick brown fox jumped over the lazy dog.</span><br>
    <span class="italic">Mrs Eaves Italic The quick brown fox jumped over the lazy dog.</span><br>
</div>
</body>
</html>