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