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