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