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