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