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