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