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