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