Question:How will you change the color of all the paragraph text to blue when the mouse is placed over paragraph, and reset it back when the mouse leaves?
A <p onmouseover="style.color='black'" onmouseout="style.color='blue'"> The text of the paragraph..</p>
B <p onmouseover="style.color='blue'" onmouseout="style.color='black'"> The text of the paragraph..</p>
C <p onmouseout="style.color='blue'"> The text of the paragraph..</p>
D <p onmouseover="style.color='blue'"> The text of the paragraph..</p>
+ AnswerB
+ Report