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