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