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