[Web] Google Web Fonts

GPow69

EDM for life ♥
Messages
18,837
Location
Canada
Very useful tool for web developers. Allows you to get and use fonts in your websites without even downloading it!
http://www.google.com/webfonts





Simple to use too;
- Pick a font (Ex. This)
- Grab the link (Provided by Google) and paste it in your page's <head>

Code:
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Six+Caps' rel='stylesheet' type='text/css'>
</head>

- Set the font to whatever you're using it for in your .CSS

Code:
h1 {
font-family: 'Six Caps', arial, serif; 
}

- DONE!


Quite useful. I'm going to start using this a lot!
Thanks for another awesome feature, Google :clap:
 
If I'm understanding this correctly then this means that people can view content on your website in a font that they haven't even installed..
And that's awesome.
 
Mave said:
If I'm understanding this correctly then this means that people can view content on your website in a font that they haven't even installed..
And that's awesome.

Yes indeedy :holmes:
 
Back
Top Bottom