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