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