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