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