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