KnowledgeBoat Logo
|

Computer Studies

Write short notes on Forms in HTML

HTML Advanced Features

18 Likes

Answer

Form is a systematic collection of information provided by the user. To create forms in HTML, <form> tag is used. It is a container tag and includes various elements like text fields, radio buttons, check boxes etc. This information is provided to serve different purposes of the user.

Syntax:

<form>
    body of the form with form elements
</form>

Answered By

11 Likes


Related Questions