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