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