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