STYLESHEET LINK

Permalink
Hello,

This may be a dumb question, but im really confused. I am trying to install font from google fonts and the direction say: "Add a stylesheet link to request the desired web font(s):"..can anyone help as to how to do this.
thanks

 
formigo replied on at Permalink Reply
formigo
This is relatively straight forward to do - simply choose all you fonts you wish to use on the Google Fonts website and then you should be able to get the code by clikcing the "use" link. For example if you was using Open sans then the code would be

<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>


You place this in the <head> section of your theme, which is usually found in the header.php file (can differ between themes).

Once you have done this you can call this font like so:

p {
font-family: 'Open Sans';
}


I hope this helps

Andy

The Formigo Team