CSS : @font-face


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. @font-face {
  2. font-family: Bickham;
  3. src: url('times_new_yorker.ttf');
  4. }
  5.  
  6. /*voici une version plus complète d'utilisation de @font-face*/
  7. @font-face {
  8. font-family: Cantarell;
  9. font-style: normal;
  10. font-weight: normal;
  11. src: local('Cantarell'), url('../fonts/cantarell.ttf') format('truetype');
  12. }
  13.  
  14. body{
  15.  
  16. background: #336688;
  17.  
  18. font-family: Bickham, serif; /*ATTENTION la propriete font-family doit toujours faire reference egalement a  une famille par defaut comme : sans-serif, serif ou encore monospace*/
  19. font-size: 4em;
  20. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.