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