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