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