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