Image Rollover Using onMouseOver and onMouseOut

Example

onmouseover and onmouseout
<!DOCTYPE html>
<html>
<head>
    <title>onmouseover and onmouseout</title>
</head>
<body>
<img src="http://placehold.it/350x150"  onmouseover="this.src='http://placehold.it/200x200';"
    onmouseout="this.src='http://placehold.it/350x150';" />
</body>
</html>
Most Helpful This Week