Making The Blog Beautiful with Google Font API.
The Google Font Directory provides high-quality web fonts that you can include in your pages using the Google Font API.
Applying a font is easy: just add a special stylesheet link to your blog, then use the font in a CSS style.
Google Font API gallery.
To start using the Google Font API on our Blog can be done in just two steps:
- Add a stylesheet link below between <head>tag:
 <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Font+Name">
 
- Style an element with the requested web font, either in a stylesheet: 
 <span style="font-family: 'Font Name', serif;">Your text</span>
Example:
- Add a stylesheet link below before </head>tag:
 <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Reenie+Beanie">
 
- Place this fonts style on where you want to appear: 
 <span style="font-family: 'Reenie Beanie', serif; font-size: 36px; text-shadow: 4px 4px 4px #aaa">Example of Reenie Beanie font</span>
 
 Preview:
 
 Example of Reenie Beanie font
 
To see more Fonts Name click here!
 
