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