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