"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Include Custom Fonts Using .ttf and Ensure Cross-Browser Compatibility?

How to Include Custom Fonts Using .ttf and Ensure Cross-Browser Compatibility?

Published on 2024-11-11
Browse:360

How to Include Custom Fonts Using .ttf and Ensure Cross-Browser Compatibility?

Including Custom Fonts Using .ttf and CSS

You want to incorporate a .ttf font into your web page but encounter difficulties. Let's examine your code:

@font-face {
    font-family: 'oswald';
    src: url('/font/oswald.regular.ttf');
}

Where's the Issue?

Including only a .ttf file is insufficient for cross-browser compatibility. To cover a wide range of browsers, you need multiple font formats.

Comprehensive Solution:

@font-face {
    font-family: 'MyWebFont';
    src: url('webfont.eot'); /* IE9 Compat Modes */
    src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('webfont.woff') format('woff'), /* Modern Browsers */
         url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

This code assumes you have .eot, .woff, .ttf and SVG formats for your web font. Web font generators like Font Squirrel or Transfonter can automate this process.

Modern Approach:

Modern browsers prefer .woff fonts, so you can also simplify your code:

@font-face {
    font-family: 'MyWebFont';
    src: url('myfont.woff') format('woff'), /* Chrome 6 , Firefox 3.6 , IE 9 , Safari 5.1  */
         url('myfont.ttf') format('truetype'); /* Chrome 4 , Firefox 3.5, Opera 10 , Safari 3—5 */
}

Additional Resources:

  • CSS Tricks: Using @font-face: https://css-tricks.com/snippets/css/using-font-face/
  • Can I Use fontface: https://caniuse.com/fontface
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3