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