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