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