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