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