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