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