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