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