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