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