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