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