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