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