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