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