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