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