2

実際には、fonts フォルダーに 3 つのファイルがあります。これらはGotham-Bold.ttf, Gotham-Medium.ttf, ..... ですので、これらの 3 つのタイプに対して 3 回Gotham-Thin.ttfを使用する必要がありますか。@font-face誰か助けてください。

現在、次のようなコードを使用しています。

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

     @font-face {
      font-family: 'Gotham';
      src: url("/fonts/Gotham-Bold.eot");
     }
    @font-face {
      font-family: 'Gotham';
      src: url("/fonts/Gotham-Bold.woff") format("woff");
    }

ありがとう。

4

2 に答える 2