Add this to your template.php file (located in the theme folder):
function YOURTHEMENAME_preprocess_html(&$variables) {
drupal_add_css('http://fonts.googleapis.com/css?family=Raleway:400,100,700', array('type' => 'external'));
}
(replace YOURTHEMENAME with the real name of your topic).
And then the correct css code in your css file. Sort of:
body {
font-family: 'Raleway', sans-serif;
}
source
share