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