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