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