I have the following link:
<link type="text/css" rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800">
And I would like to add it to a select.
I have already tried to put CSS in select { font-family: Arial}
and it does not work.
Would anyone know how to put this font? Below the code I'm using to create select
<tr>
<td colspan="2>
<select name="lead_source" style="color:gray; width:100%; height:50px;" required="required">
<option style="display:none;" value="" disabled selected>Como chegou até nós?</option>
<option value="Anuncio" style="color:black">Anuncio</option>
</select>
</td>
</tr>