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