Use on the webTotal Use [ 3882 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/d8cd24c4ff0f75d6bd58958b654d873e?family=Cyrillic-Bold-Italic" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/d8cd24c4ff0f75d6bd58958b654d873e?family=Cyrillic-Bold-Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Cyrillic-Bold-Italic";
src: url("https://db.onlinewebfonts.com/t/d8cd24c4ff0f75d6bd58958b654d873e.eot");
src: url("https://db.onlinewebfonts.com/t/d8cd24c4ff0f75d6bd58958b654d873e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/d8cd24c4ff0f75d6bd58958b654d873e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/d8cd24c4ff0f75d6bd58958b654d873e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/d8cd24c4ff0f75d6bd58958b654d873e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/d8cd24c4ff0f75d6bd58958b654d873e.svg#Cyrillic-Bold-Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "Cyrillic-Bold-Italic";