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