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