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