Return to Snippet

Revision: 48562
at July 5, 2011 07:22 by lister


Initial Code
<!-- In the Head: -->

<!-- Some special fonts -->
/* Single font load*/
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Serif">
/* Multiple font load*/
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Nobile|Droid+Serif|Old+Standard+TT|Droid+Sans"><!-- Some special fonts -->


<!-- In your CSS: -->
body {
font-family: 'Droid Serif', serif; font-size: 48px;
}

Initial URL


Initial Description
Use this to add the Google font API. This lets you use some new cool-looking fonts on your website that all browsers and computers will display properly – so you don’t have to mess with installing fonts separately for your website or hoping your visitors have the appropriate fonts (which no self-respecting designer would do anyway).

In the head:

Initial Title
Adding Google fonts

Initial Tags


Initial Language
CSS