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