<html>
<head>
<title>Abakada CSS Demo: font Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada CSS Demo: font Attribute</h2></div>
<hr size=1 width=92%>
<center>
<h5>This example uses inline event handlers to dynamically set an object's <b>font</b> style attributes in response to mouse events.</h5>
<p id="msg" onmouseover="this.style.font='italic 14pt serif'"
onclick="this.style.font='bolder small-caps 13pt comic sans ms'"
onmouseout="this.style.font='bold 13pt arial'">
Move the mouse over or click on this text to change its <b>font</b> characteristics.
Move the mouse out to restore.
</p>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>