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