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