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