Respuesta :

Answer:

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

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>