Form is designed under <body>…</body> tag with <form>…</form> tag
Labels are the name of the form to be desplay in page .It is to be under <label>…</label>tag
Input type is the type of data in the form to be interacted. such as
<input type=”text”> which is used for name or any such similar field.
<input type=”password”>
it is used for password to be given by user.
<input type=”radio”> it us used for radio button to be clicked by the user
<input type=”checkbox”>
checkbox is given to select the box from the list .
<br> tag is given to give break between lines so each form field shows on different line.
name=”” is given specify the name of the input type and id to make it unique.