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