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