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