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