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