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