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