53063593e3
Final
13 lines
216 B
HTML
13 lines
216 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Inline JavaScript</title>
|
|
</head>
|
|
<body>
|
|
<img src='apple.png'
|
|
onmouseover="this.src='orange.png'"
|
|
onmouseout="this.src='apple.png'">
|
|
</body>
|
|
</html>
|
|
|