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