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