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