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