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