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