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