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