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