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