Link to home
Start Free TrialLog in
Avatar of drees727
drees727

asked on

Fonts in Netscape vs. IE

I'm somewhat new to HTML so bear with me:)  I created a Web page using FrontPage.  When I view it in IE 5.0, the Arial font shows up.  When I view it in Netscape 4.08 it reverts to Times Roman.  My Netscape font preferences say to use document specified fonts.  What do I need to do so that it displays the Arial font in Netscape?  Here is my html code:

<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="Program" content="FrontPage.Editor.Document">
<title>Manual</title>
</head>

<body>
<font face="Arial">
<table border="0" width="100%" bgcolor="#FF9966">
  <tr>
    <td width="100%">
      <p align="center"><b>Our Page</b></td>
  </tr>
</table>

<table border="0" width="100%">
  <tr>
    <td width="97%" valign="top" align="left"><p align="right">more Text<br></p>
    </td>
  </tr>
  <tr>
    <td width="97%" valign="top" align="left">
    <b>Procedure</b>
    <p>This is where the text goes.</p>
    </td>
  </tr>
</table>
</font>
</body>
</html>
ASKER CERTIFIED SOLUTION
Avatar of bark10
bark10

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of drees727
drees727

ASKER

Works great.  Thank you!!