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