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