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