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