Computer Applications

Explain any two controls supported by HTML form.

HTML Advanced Features

1 Like

Answer

Two controls supported by HTML form are:

1. Checkbox — The check box is used to select a number of options in a given list of options on the form. Its syntax is as follows:

<INPUT TYPE = "CHECKBOX" NAME = "S1" VALUE = "ENGLISH" /> English

2. Text box — A text box allows a user to enter alphanumeric data that is a combination of characters and numbers. Its syntax is as follows:

<INPUT TYPE = "TEXT" NAME = "NAME" />

Answered By

1 Like


Related Questions