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