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