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