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