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