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