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