fontWeight.aspx font size:
<html>
<head>
<title>Abakada CSS Demo: fontWeight Property</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>

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

<div class="header"><h2>Abakada CSS Demo: fontWeight Property</h2></div>
<hr size=1 width=92%>

<center>

<h5>This example uses inline event handlers to dynamically set an object's <b>fontWeight</b> style property.</h5>

<p style="font: 13pt arial; color: navy; cursor: hand"
   onmouseover="this.style.fontWeight='bolder'"
   onmouseout="this.style.fontWeight=''">
      Move the mouse over this text to make the text bolder. 
</p>

</center>

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

</body>
</html>