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