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