Web safe fonts are boring but thankfully, Google has a list of fonts that you can use through their API to add new fonts to your design.
http://code.google.com/webfonts/
Here’s an example of how to add a font to your page
1. Add a stylesheet link to request the desired web font(s):
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Font+Name">
2. Style an element with the requested web font, either in a stylesheet:
CSS selector {
font-family: 'Font Name', serif;
}
Filed Under :
Jun.3,2010