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