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