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