Use on the webTotal Use [ 5482 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/397fffb7fa24c39c14bda6a815060bbe?family=Minion+Cyrillic+Regular" 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/397fffb7fa24c39c14bda6a815060bbe?family=Minion+Cyrillic+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Minion Cyrillic Regular";
src: url("https://db.onlinewebfonts.com/t/397fffb7fa24c39c14bda6a815060bbe.eot");
src: url("https://db.onlinewebfonts.com/t/397fffb7fa24c39c14bda6a815060bbe.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/397fffb7fa24c39c14bda6a815060bbe.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/397fffb7fa24c39c14bda6a815060bbe.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/397fffb7fa24c39c14bda6a815060bbe.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/397fffb7fa24c39c14bda6a815060bbe.svg#Minion Cyrillic Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Minion Cyrillic Regular";