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