“So verwenden Sie lokale Schriftarten in CSS” Code-Antworten

Verwenden Sie .TTF in CSS

@font-face {
  font-family:"Name-Of-Font";
  src: url("yourfont.ttf") format("truetype");
}
Nasty Newt

Verwenden Sie ein lokales Schriftart CSS

<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
    font-family: myFirstFont;
    src:url("/fonts/Harlow_Solid_Italic.ttf");
}

.harlow{
    font-family: myFirstFont;
}
</style>
</head>
<body>
<div>With CSS3, websites can finally use fonts other than the pre selected "web-safe" fonts.</div>
<p><b class="harlow">Note:</b> Internet Explorer 8 and earlier, do not support the @font-face rule with the WOFF format (only support for EOT format).</p>
</body>
</html>
Shurvir Mori

So verknüpfen Sie lokal installierte Schriftarten mit CSS

<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
    font-family: "myFirstFont";
    src: url("C:/Users/Desktop/Website/fonts/Harlow_Solid_Italic.ttf");
}

.harlow {
    font-family: "myFirstFont";
}
</style>
</head>
<body>
<div>With CSS3, websites can finally use fonts other than the pre selected "web-safe" fonts.</div>
<p><b class="harlow">Note:</b> Internet Explorer 8 and earlier, do not support the @font-face rule with the WOFF format (only support for EOT format).</p>
</body>
</html>
Repulsive Raven

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

Wenn Sie versuchen, ein Paket zu verwenden, stellen Sie sicher, dass ../../static/fonts/lato/lato-regular.woff installiert ist. Wenn Sie versuchen, eine lokale Datei zu verwenden, stellen Sie sicher, dass der Pfad korrekt ist.

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

So verwenden Sie lokale Schriftarten in CSS

<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
    font-family: myFirstFont;
    src:local("fonts\Harlow_Solid_Italic.ttf");
}

.harlow{
    font-family: myFirstFont, sans-serif;
}
</style>
</head>
<body>
<div>With CSS3, websites can finally use fonts other than the pre selected "web-safe" fonts.</div>
<p><b class="harlow">Note:</b> Internet Explorer 8 and earlier, do not support the @font-face rule with the WOFF format (only support for EOT format).</p>
</body>
</html>
Hurt Hummingbird

Ähnliche Antworten wie “So verwenden Sie lokale Schriftarten in CSS”

Fragen ähnlich wie “So verwenden Sie lokale Schriftarten in CSS”

Weitere verwandte Antworten zu “So verwenden Sie lokale Schriftarten in CSS” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen