Quotes in font declarations
by Marventus
HTML
<p>Regular paragraph <strong>without</strong> Hermes Regular font declaration.</p>
<p id="p1">Regular paragraph <strong>with</strong> Hermes Regular font declaration <strong>not</strong> wrapped in quotes.</p>
<p id="p2">Regular paragraph <strong>with</strong> Hermes Regular font declaration wrapped in quotes.</p>
CSS
@import url("http://fnt.webink.com/wfs/webink.css/?project=48A0FEEA-BDD3-4D13-87A6-73DC10C33BB5&fonts=31B87CF9-F410-ED20-E812-2F143D523935:f=Hermes-Regular");
#p1 {
font: 15px Hermes-Regular;
}
#p2 {
font: 15px "Hermes-Regular";
}