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