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