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