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