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