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