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