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