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