Advertisement
drego85

Inserire un Font personalizzato in un CSS

Feb 13th, 2012
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.31 KB | None | 0 0
  1.  
  2. /* Inserire un font personalizzato in un CSS (Cascading Style Sheets) */
  3. /*  Il font *.EOT per IE va sempre per primo */
  4.  
  5. @font-face {
  6.     font-family: 'Font_Family_Name';
  7.     src: url('http://www.xxxxx.it/yyyy.EOT')
  8. }
  9.  
  10. @font-face {
  11.     font-family: 'Font_Family_Name';
  12.     src: url('http://www.xxxxx.it/yyyy.TTF');
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement