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