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