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