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