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