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