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