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