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