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