Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

install-a-webfont.txt 729B

123456789101112131415161718192021222324
  1. Installing Webfonts
  2. 1. Upload the files from this zip to your domain.
  3. 2. Add this code to your website:
  4. @font-face {
  5. font-family: 'Playlist-Script';
  6. src:url('Playlist-Script.ttf.woff') format('woff'),
  7. url('Playlist-Script.ttf.svg#Playlist-Script') format('svg'),
  8. url('Playlist-Script.ttf.eot'),
  9. url('Playlist-Script.ttf.eot?#iefix') format('embedded-opentype');
  10. font-weight: normal;
  11. font-style: normal;
  12. }
  13. 3. Integrate the fonts into your CSS:
  14. Add the font name to your CSS styles. For example:
  15. h1 {
  16. font-family: 'Playlist-Script';
  17. }
  18. Troubleshooting Webfonts
  19. 1. You may be using the fonts on different domain or subdomain.
  20. 2. Check if you have link the fonts properly in the CSS.