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