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