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