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