“Font khusus CSS” Kode Jawaban

cara menautkan font 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

Font khusus CSS

@font-face {
    font-family: 'YourFontName'; /*a name to be used later*/
    src: url('http://domain.com/fonts/font.ttf'); /*URL to font*/
}
Past

Wajah Font 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

@aturan font-wajah di 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

Jawaban yang mirip dengan “Font khusus CSS”

Pertanyaan yang mirip dengan “Font khusus CSS”

Lebih banyak jawaban terkait untuk “Font khusus CSS” di TypeScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya