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