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