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