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