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