“Schriftart in CSS importieren” Code-Antworten

OTF CSS3-Schriftart

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

So verknüpfen Sie Schriftarten 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

CSS -Schriftart

@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

Schriftart CSS importieren

@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

Schriftart in CSS importieren

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

Schriftart CSS importieren

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

Ähnliche Antworten wie “Schriftart in CSS importieren”

Fragen ähnlich wie “Schriftart in CSS importieren”

Weitere verwandte Antworten zu “Schriftart in CSS importieren” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen