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