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