Skip to content

24 ways to impress your friends

Vote down?

Lars

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…