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