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