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