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