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