I have a select box in html and my select options text contain two different languages I want to give to each language a different font family because the font families not support both languages my code now looks like that:
<select name="" class="" aria-invalid="false">
<option value="בדיקה test">בדיקה <span class="en">test</span></option>
<option value="בדיקה test">בדיקה <span class="en">test</span></option>
<option value="בדיקה test">בדיקה <span class="en">test</span></option>
</select>