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