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