KnowledgeBoat Logo
|

Computer Studies

Define Input tag with reference to HTML form

HTML Advanced Features

18 Likes

Answer

Input tag is an element of the <form> tag. It allows us to create a field to enter data of our choice. The data entry can be done under 'Type' attribute of the <input> tag. The different components under type are text, check box, radio, submit, password etc.

Example:

<input type = "text">

Answered By

10 Likes


Related Questions