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