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