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