“Добавить шрифт CSS” Ответ

Как связать шрифты 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 Font Face

@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

Добавить шрифт CSS

@font-face {
font-family: Ampersand;
src: url("fonts/ampersand.woff");
}
Scary Salamander

импорт шрифт в CSS

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

Ответы похожие на “Добавить шрифт CSS”

Вопросы похожие на “Добавить шрифт CSS”

Больше похожих ответов на “Добавить шрифт CSS” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования