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