Difference between revisions of "Using Google fonts in styling"
Jump to navigation
Jump to search
old>Admin |
old>Admin |
||
Line 7: | Line 7: | ||
@import url(http://fonts.googleapis.com/css?family=Molle:400italic);<br> | @import url(http://fonts.googleapis.com/css?family=Molle:400italic);<br> | ||
...<br> | ...<br> | ||
.TempusServaPage h3 { font-family: 'Molle'}<br> | .TempusServaPage h3 { font-family: 'Molle'; }<br> | ||
</blockquote> | </blockquote> | ||
< | <style type="text/css"> | ||
@import url(http://fonts.googleapis.com/css?family=Molle:400italic); | |||
.TempusServaPage h3 { font-family: 'Molle'; } | |||
</style> | |||
<h3 style="font-family: 'Molle';">Enjoy youre new font</h3> | <h3 style="font-family: 'Molle';">Enjoy youre new font</h3> |
Revision as of 14:54, 22 February 2013
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'; }
<style type="text/css">
@import url(http://fonts.googleapis.com/css?family=Molle:400italic);
.TempusServaPage h3 { font-family: 'Molle'; }
</style>