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