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