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