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