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