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