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