Run
1264 x 150
1
2
<html>
3
<body>
4
<form action="/action_page.php" method="get">
5
<label for="fruts">Search for your favorite fruit :</label>
6
<input list="fruts" name="fruts" id="fruts">
7
<datalist id="fruts">
8
<option value="Pomegranate">
9
<option value="Orange">
10
<option value="cantaloupe">
11
<option value="apple">
12
<option value="Grapefruit">
13
</datalist>
14
<input type="submit">
15
</form>
16
<p><b>Note:</b>The datalist tag is not supported in Safari 12.0 .</p>
17
</body>
18
</html>