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