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