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