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