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