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