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