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