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