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