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