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