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