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