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