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