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