<html>
<head>
<title>Abakada HTML Demo: src Property</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada HTML Demo: <span class="hilite">src</span> Property</h3></div>
<hr size=1 width=92%>
<div align="center">
<p>Here is an example of an image change on mouseover, using the object's <b>src</b> property.</p>
<p>Hover your mouse over the image to see the change.</p>
<img src="../shared/images/samp10.jpg"
height=200 width=200 border=0
onmouseover="this.src='../shared/images/samp09.jpg'"
onmouseout="this.src='../shared/images/samp10.jpg'">
</div>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>