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