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