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