Woff2 @font-face Won't Load Properly

9.1k Views Asked by At

I am having trouble trying to import a woff2 font file for use in a simple test webpage.

Below is how I have organized and coded the test webpage: File directory for test webpage Code for test webpage


Added .woff file

Everything is in one folder named 'test' and the @font-face src references the local .woff2 font file I want to test. Unfortunately, the font for the heading does not show the proper font unless I use the .ttf font file.

This is how it looks when I use the .ttf file: Test page successfully loads font

and this is how it looks when I use the .woff2 file: Test page fails to load font

I feel as though I am making a simple formatting mistake somewhere, but I can't seem to figure out where I'm going wrong. Any help is appreciated.

4

There are 4 best solutions below

0
On BEST ANSWER

I finally found out why the font wouldn't work! I had downloaded the Latin-Extended version of the font, which wouldn't display correctly. All I had to do was download the plain Latin version of the font and it worked as it should.

I thought to download the plain Latin version of the font after taking a look at this post by limonte: Font rendering in Chrome (woff2) - after load font family doesn't want to change.

2
On

.woff2

First Way - Steps:

  1. Go to iis server and then "Sites"
  2. Double click on website you want to add MIME type.
  3. Right pan find and click on "MIME Types"
  4. In right most pan, click on "Add"
  5. Type in ".woff2" in "File name extensions:" and "application/font-woff2" in "MIME Type:"

Done. Refresh your website page, this should reflect now.

Second Way - Steps:

Add Below into the web.config.

<system.webServer>
<staticContent>
    <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
</staticContent>
</system.webServer>

Note: If already there then just add entry for woff2. Else add entire tag.

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

hope this can help found it a while back when doing something similar(not taking credit for this as found it not wrote it) I would however suggest trying woff instead of woff2 depending on your browser..

0
On

You can add a MIME type inside the IIS Manager.

  1. Open the MIME Types in your server Home page
  2. Add .woff2 with MIME type application/x-font-woff.

And you can configure it in web.config

<system.webServer>
    <staticContent>
      <remove fileExtension=".woff2" />
      <mimeMap fileExtension=".woff2" mimeType="application/x-font-woff" />
      <remove fileExtension=".woff" />
      <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
    </staticContent>
</system.webServer>

In my case it works with IIS 10.