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