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