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