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