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