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