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