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