0
in html there is a property called SELECT and also the INPUT and I would like to make a INPUT with options equal to SELECT but how can I do that? the code I used:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>só um teste</title>
<meta charset="utf-8">
</head>
<input type="text" placeholder="sua faixa etária">
<option value="">faixa etária:</option>
<option value="-18">menor de idade</option>
<option value="+18">maior de idade</option>
<option value="+60">idoso</option>
</input>
<body>
</body>
</html>
search: https://www.w3schools.com/tags/tag_input.asp.
– Marcos Sousa
thanks! I found an attribute called datalist with exactly what I wanted to do!
– tiago paulo amaral