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