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