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