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