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