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