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