“Use a fonte woff2 no ​​CSS” Respostas de código

Use a fonte woff2 no ​​CSS

@font-face {
  font-family: 'MyWebFont';
  src:  url('myfont.woff2') format('woff2'),
        url('myfont.woff') format('woff');
}
KostasX

Fontra da fonte CSS

@font-face {
  // Defining what the font will be called
  font-family: thisSpecialFont;
  // Linking to the font file
  src: url(linkToFontFile.woff);
}
body {
  font-family: thisSpecialFont;
}
Objectively Hilarious

Se você estiver tentando usar um pacote, verifique se ../../static/fonts/lato/lato-regular.woff está instalado. Se você estiver tentando usar um arquivo local, verifique se o caminho está correto.

/** Use intstead */
@font-face {
  font-family: 'MyFont';
  src: local('MyFont'), url(fonts/MyFont.woff) format('woff');
}
Salo Hopeless

importar fontes woff css

body {
  font-family: 'MyWebFont', Fallback, sans-serif;
}
Grieving Gharial

Respostas semelhantes a “Use a fonte woff2 no ​​CSS”

Perguntas semelhantes a “Use a fonte woff2 no ​​CSS”

Mais respostas relacionadas para “Use a fonte woff2 no ​​CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código