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