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