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