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