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