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