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