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