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