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