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