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