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