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