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