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