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