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