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