• I wanted to know how to install my own custom font into the theme file. It’s format in OpenTypeFont. I know you can use CSS @fone-face to identify new fonts like

    @font-face {
        font-family: 'myNewFont';
        src: url('myNewFont.woff2') format('woff2'),
             url('myNewFont.woff') format('woff');
        font-weight: normal;
        font-style: normal;
    
    }

    Please provide ways or plugins.

    Thanks

  • The topic ‘Custom font’ is closed to new replies.