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