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