Evento onMouseOver

Pulsa sobre la imagen
volcan

Código

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Evento onmouseover</title>
</head>
<body>
<h3>Evento onMouseOver</h3>

<img alt="imagen" src="imagen.jpg" 
    onmouseover="alert('sobre la imagen')">

</body>
</html>