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