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