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