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