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