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