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