Select option with font family
by salt
HTML
<select>
<option style="font-family: arial">Arial</option>
<option style="font-family: 'Times New Roman'">Times New Roman</option>
<option style="font-family: Verdana">Verdana</option>
<option>Comic Sans Serif</option>
<option>Trebuchet MS</option>
</select>
CSS
select,
option {
font-size: 24px;
font-family: 'Trebuchet MS;
}