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