Write an HTML page that has a button in it. When the cursor is over the button use JavaScript to change the background color of the button. Change the background color of the button again when the cursor is no longer over the button.

What will be an ideal response?

```


A Simple Web Page

A Simple Heading


This is a very simple web page. When you move
over the button the button
will change color. When you move the mouse away
from the button it will set the background color to white.



onMouseOver="this.style.background='yellow'"
onMouseOut="this.style.background='white'">



```

Computer Science & Information Technology

You might also like to view...

The Collect Data group on the External Data Tab allows a user to import data into a database

Indicate whether the statement is true or false

Computer Science & Information Technology

__________ is a design principle which means that copies of the same data unit in adjacent memory levels must be consistent.

A. Locality B. Coherence C. Inclusion D. Static

Computer Science & Information Technology