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