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