Sixfoot Studio

The giant of web design agencies

Hey there! Thanks for dropping by Theme Preview! Take a look around
and grab the RSS feed to stay updated. See you around!

Category : Web Design

Q&A with Milton Glaser from Jad Limcaco on Vimeo.

Web Fonts

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;
}