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