Lars 16 December 2012 One little optimization tip: Including multiple fonts from Google Fonts, can be done in one single query, which will mean one less http request. So instead of: <link href=“http://fonts.googleapis.com/css?family=Corben:bold” rel=“stylesheet” type=“text/css”> <link href=“http://fonts.googleapis.com/css?family=Nobile” rel=“stylesheet” type=“text/css”> You can do: <link href=“http://fonts.googleapis.com/css?family=Corben:bold|Nobile” rel=“stylesheet” type=“text/css”> Just my 2 cents…
One little optimization tip:
Including multiple fonts from Google Fonts, can be done in one single query, which will mean one less http request.
So instead of:
<link href=“http://fonts.googleapis.com/css?family=Corben:bold” rel=“stylesheet” type=“text/css”> <link href=“http://fonts.googleapis.com/css?family=Nobile” rel=“stylesheet” type=“text/css”>
You can do:
<link href=“http://fonts.googleapis.com/css?family=Corben:bold|Nobile” rel=“stylesheet” type=“text/css”>
Just my 2 cents…