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