Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. @font-face {
  2. font-family: 'YourFontName'; /*a name to be used later*/
  3. src: url('http://domain.com/fonts/font.ttf'); /*URL to font*/
  4. }
  5.  
  6. .classname {
  7. font-family: 'YourFontName';
  8. }
  9.  
  10. @font-face {
  11. font-family: "Yanone Kaffeesatz";
  12. src: url("../fonts/YanoneKaffeesatz-Regular.ttf");
  13. }
  14.  
  15. @font-face {
  16. font-family: 'Comfortaa Regular';
  17. src: url('Comfortaa.eot');
  18. src: local('Comfortaa Regular'),
  19. local('Comfortaa'),
  20. url('Comfortaa.ttf') format('truetype'),
  21. url('Comfortaa.svg#font') format('svg');
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement