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