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