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