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