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