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