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