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