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