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