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