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