Mam trzy rodzaje czcionek - Gotham-bold, Gotham-medium, Gotham-thin, więc czy muszę używać trzy razy @ font-face?

Właściwie mam trzy pliki w folderze czcionek. To sąGotham-Bold.ttf, Gotham-Medium.ttf, Gotham-Thin.ttf..... Więc muszę użyć@font-face trzy razy dla tych trzech typów. Proszę, pomóż mi.

Obecnie używam kodu w następujący sposób:

    @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");
    }

Dzięki.

questionAnswers(2)

yourAnswerToTheQuestion