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