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