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