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