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