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