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