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