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