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