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