2.6k views
3 votes
The HTML5 _____________ form control provides the user with a selection of choices along with an option to enter information.

User Dileping
by
5.6k points

1 Answer

3 votes

Answer:

The correct answer for the given question is "datalist " .

Step-by-step explanation:

Datalist control provide a drop-down list of pre-defined options the drop list pre-defined option is entered by the user the datalist tag is an html5 tag it provides Selection of choices to user .

The Syntax of using datalist is given below:

<input list=" brw" name="brw">

<datalist id="san">

<option value="grapes">

<option value="apples">

</datalist>

<input type="submit">

</form>

User Rudy Velthuis
by
5.1k points