4
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’d like to add her to a select.
I’ve tried putting in CSS select { font-family: Arial}
and it doesn’t work.
Would anyone know how to place this source? Below the code I’m using to create the 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>
Friend, check in your code that line:
<td colspan="2>
if you’re closing with double quotes getting that way:<td colspan="2">
, if you’re not correct. I know it has nothing to do with the question but it can help you with any problems, it was suggested in the question but it may be that your code is like this, without closing double quotes.– Giancarlo Abel Giulian