“Importar Fonte no CSS” Respostas de código

OTF CSS3-FONTE

@font-face {
    font-family: GraublauWeb;
    src: url("path/GraublauWeb.otf") format("opentype");
}
GutoTrosla

Como vincular fontes CSS

@font-face {
  font-family: myFirstFont;
  src: url(sansation_light.woff);
}

div {
  font-family: myFirstFont;
}
/*Name the font-family and link the font file in the @font-face rule*/
OptimusRiemann

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

Importar fontes CSS

@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OpenSans-Regular-webfont.woff2") format("woff2"),
       url("/fonts/OpenSans-Regular-webfont.woff") format("woff");
}
Upset Unicorn

Importar Fonte no CSS

@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
Yog

Importar fontes CSS

@import url(“Font link”);
David Martínez L

Respostas semelhantes a “Importar Fonte no CSS”

Perguntas semelhantes a “Importar Fonte no CSS”

Mais respostas relacionadas para “Importar Fonte no CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código