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