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