Using Google fonts in styling
Revision as of 14:58, 22 February 2013 by old>Admin
Find a font you alike
http://www.google.com/webfonts
Change your stylesheet like this example
...
@import url(http://fonts.googleapis.com/css?family=Molle:400italic);
...
.TempusServaPage h3 { font-family: 'Molle'; }
...
The import method is needed, but embedding by a link inside a wrapper is also possible.