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