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