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