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