I'm trying to create a select with a list of coins and ready-made images with a "type to search" method, exactly as it is in the images. After several searches on the internet I can't find anything that gives me the same result as the image.
Does anyone know how to do this with HTML, CSS and JS??
1.select
What you can try is the following solution :
<input id="searchCountries" list="countries" placeholder="type to search">
<datalist id="countries">
<option value="🇫🇷 FRANCE">
<option value="🇨🇳 CHINA">
<option value="🇺🇸 USA">
<option value="🇪🇸 SPAIN">
<option value="🇧🇷 BRAZIL">
</datalist>
With a little bit of CSS it should exactly do what you want.
And if you want there's a lot of library that can do this.