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