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