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