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