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