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