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