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