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