Google Fonts URL


/ Published in: HTML
Save to your folder(s)

IE9 renders google fonts nicer when combining two fonts into the same URL call in the style sheet.


Copy this code and paste it in your HTML
  1. <!-- Try doing this -->
  2. @import url(http://fonts.googleapis.com/css?family=Terminal+Dosis+Light|Lato);
  3.  
  4. <!-- Instead of this -->
  5. @import url(http://fonts.googleapis.com/css?family=Terminal+Dosis+Light);
  6. @import url(http://fonts.googleapis.com/css?family=Lato);

Report this snippet


Comments


You need to login to view comments.