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