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