navprops.aspx font size:
<html>
<head>
<title>Abakada DHTML Demo: The navigator Object</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>

<body>
<!-- #include virtual="~/shared/top.inc" -->

<div class="header"><h2>Abakada DHTML Demo: The <span class="hilite">navigator</span> Object</h2></div>
<hr size=1 width=92%>

<center>

<p id="msg">The <b>navigator</b> object contains information about the Web browser. <br>
This is useful when we need to detect the current user's browser and code for browser compatibility. </p>

<p>The values below are dynamically retrieved from your browser by a script. </p>

<script language="JavaScript">
<!--
nav = "";
nav += "<table class=\"data\" cellspacing=1 cellpadding=3>";
nav += "<tr><th>Navigator object property</th>";
nav += "<th>Value returned by your browser</th></tr>";
nav += "<tr><td>navigator.appName</td>";
nav += "<td>" + navigator.appName + "</td></tr>";
nav += "<tr><td>navigator.appVersion</td>";
nav += "<td>" + navigator.appVersion + "</td></tr>";
nav += "<tr><td>navigator.userAgent</td>";
nav += "<td>" + navigator.userAgent + "</td></tr>";
nav += "<tr><td>navigator.platform</td>";
nav += "<td>" + navigator.platform + "</td></tr>";
nav += "</table>";
document.write(nav);
//-->
</script>

</center>

<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->

</body>
</html>