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