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