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