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