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