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