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