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