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