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