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