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