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