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