KnowledgeBoat Logo

Computer Applications

Which of the following tags will clear the contents of the form?

  1. <INPUT TYPE="CLEAR" VALUE="Clear the form">
  2. <INPUT TYPE="SUBMIT" VALUE="Clear the form">
  3. <INPUT TYPE="RESET" VALUE="Clear the form">
  4. <INPUT TYPE="BUTTON" VALUE= "Clear the form">

HTML Advanced Features

3 Likes

Answer

<INPUT TYPE="RESET" VALUE="Clear the form">

Reason — The RESET button is a special button which when clicked, resets all the form controls to default states.

Answered By

2 Likes


Related Questions