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